mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
802 B
29 lines
802 B
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { RouterModule, provideRoutes } from '@angular/router';
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
describe('App', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [
|
|
AppComponent
|
|
],
|
|
imports: [
|
|
RouterModule,
|
|
RouterTestingModule
|
|
],
|
|
providers: [
|
|
provideRoutes([])
|
|
]
|
|
});
|
|
});
|
|
|
|
it('should work', () => {
|
|
const fixture = TestBed.createComponent(AppComponent);
|
|
|
|
expect(fixture.componentInstance instanceof AppComponent).toBe(true, 'should create AppComponent');
|
|
});
|
|
});
|