42473e1a8a
-combine the features of the two previous commits -add prettier and pretty-quick -more routing and logout button
14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
describe('AppRoutingModule', () => {
|
|
let appRoutingModule: AppRoutingModule;
|
|
|
|
beforeEach(() => {
|
|
appRoutingModule = new AppRoutingModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(appRoutingModule).toBeTruthy();
|
|
});
|
|
});
|