test(common): fix expect that does not execute

This commit is contained in:
Tony
2019-12-09 15:31:25 +00:00
parent 36d5a81439
commit 185bbbd5fe

View File

@@ -3,6 +3,6 @@ import { randomStringGenerator } from '../../utils/random-string-generator.util'
describe('randomStringGenerator', () => {
it('should generate random string', () => {
expect(randomStringGenerator()).to.be.string;
expect(randomStringGenerator()).to.be.a('string');
});
});