Added prettier and also prettied all the typescript files using prettier ESLint is using the AirBnB rules which are the most strict to lint the files.
14 lines
259 B
TypeScript
14 lines
259 B
TypeScript
import { UserModule } from './user.module';
|
|
|
|
describe('UserModule', () => {
|
|
let userModule: UserModule;
|
|
|
|
beforeEach(() => {
|
|
userModule = new UserModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(userModule).toBeTruthy();
|
|
});
|
|
});
|