8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
import { Utils } from './utils';
|
|
|
|
describe('Utils', () => {
|
|
it('should create an instance', () => {
|
|
expect(new Utils()).toBeTruthy();
|
|
});
|
|
});
|