mirror of
https://github.com/AIR-EISTI/hades.git
synced 2025-01-10 03:21:30 +01:00
13 lines
308 B
TypeScript
13 lines
308 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();
|
|
});
|
|
});
|