Files
nest/packages/common/test/utils/random-string-generator.util.spec.ts
2018-12-24 14:45:32 +01:00

9 lines
262 B
TypeScript

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