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
316 B
TypeScript
14 lines
316 B
TypeScript
import { UserRoutingModule } from './user-routing.module';
|
|
|
|
describe('UserRoutingModule', () => {
|
|
let userRoutingModule: UserRoutingModule;
|
|
|
|
beforeEach(() => {
|
|
userRoutingModule = new UserRoutingModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(userRoutingModule).toBeTruthy();
|
|
});
|
|
});
|