mirror of
https://github.com/dyiop/astute.git
synced 2025-06-05 09:16:04 -04:00
14 lines
321 B
TypeScript
14 lines
321 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();
|
|
});
|
|
});
|