mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
9 lines
262 B
TypeScript
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;
|
|
});
|
|
});
|