2018-06-13 18:34:10 +02:00
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
|
|
|
|
describe('AppRoutingModule', () => {
|
2018-06-19 16:55:50 +02:00
|
|
|
let appRoutingModule: AppRoutingModule;
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-19 16:55:50 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
appRoutingModule = new AppRoutingModule();
|
|
|
|
});
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-19 16:55:50 +02:00
|
|
|
it('should create an instance', () => {
|
|
|
|
expect(appRoutingModule).toBeTruthy();
|
|
|
|
});
|
2018-06-13 18:34:10 +02:00
|
|
|
});
|