Remove underscore
This commit is contained in:
parent
704107a256
commit
9d8ad21819
20 changed files with 111 additions and 226 deletions
|
@ -5,6 +5,7 @@
|
|||
|
||||
import chai, { assert } from 'chai';
|
||||
import chaiAsPromised from 'chai-as-promised';
|
||||
import { clone } from 'lodash';
|
||||
import {
|
||||
Direction,
|
||||
IdentityKeyPair,
|
||||
|
@ -563,7 +564,7 @@ describe('SignalProtocolStore', () => {
|
|||
describe('with invalid attributes', () => {
|
||||
let attributes: IdentityKeyType;
|
||||
beforeEach(() => {
|
||||
attributes = window._.clone(validAttributes);
|
||||
attributes = clone(validAttributes);
|
||||
});
|
||||
|
||||
async function testInvalidAttributes() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue