Skip to content

Commit

Permalink
Merge pull request #4744 from LiskHQ/fix-test-on-development
Browse files Browse the repository at this point in the history
Lisk elements tests failing on development - Closes #4743
  • Loading branch information
shuse2 committed Jan 24, 2020
2 parents 0621b1d + 8a06003 commit d151280
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions elements/lisk-elements/test/index.spec.ts
Expand Up @@ -37,22 +37,22 @@ describe('lisk-elements', () => {
});

it('p2p should be an object', () => {
return expect(p2p).to.be.an('object');
return expect(p2p).toBeObject();
});

it('passphrase should be an object', () => {
return expect(passphrase).toBeObject();
});

it('transactionPool should be an object', () => {
return expect(transacationPool).to.be.an('object');
return expect(transacationPool).toBeObject();
});

it('transactions should be an object', () => {
return expect(transactions).toBeObject();
});

it('validator should be an object', () => {
return expect(validator).to.be.an('object');
return expect(validator).toBeObject();
});
});

0 comments on commit d151280

Please sign in to comment.