tanshu
1350870f9e
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 { RoleRoutingModule } from './role-routing.module';
|
|
|
|
describe('RoleRoutingModule', () => {
|
|
let roleRoutingModule: RoleRoutingModule;
|
|
|
|
beforeEach(() => {
|
|
roleRoutingModule = new RoleRoutingModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(roleRoutingModule).toBeTruthy();
|
|
});
|
|
});
|