Minor test style improvements (#1219)
* Changed .eq to .equal * Changed equal(bool) to .to.be.bool * Changed be.bool to equal(bool), disallowed unused expressions.
This commit is contained in:
@ -44,7 +44,7 @@ function shouldSupportInterfaces (interfaces = []) {
|
||||
});
|
||||
|
||||
it('is supported', async function () {
|
||||
(await this.thing.supportsInterface(interfaceId)).should.be.true;
|
||||
(await this.thing.supportsInterface(interfaceId)).should.equal(true);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user