Skip to content

Commit

Permalink
N2N-3 fix fe test to pass CI checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jokerosky committed Nov 17, 2017
1 parent 4a186ae commit ed69082
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions src/N2N.Web/src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
import { TestBed, async } from '@angular/core/testing';
import { AppComponent } from './app.component';
import { NavMenuComponent } from './navmenu/navmenu.component';
import { RouterTestingModule } from '@angular/router/testing'
import { MatDialogModule } from '@angular/material';

describe('AppComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
AppComponent
AppComponent,
NavMenuComponent
],
imports: [
RouterTestingModule,
MatDialogModule
],
providers:[
]
}).compileComponents();
}));


it('should create the app', async(() => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
}));
it(`should have as title 'app'`, async(() => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app.title).toEqual('app');
}));
it('should render title in a h1 tag', async(() => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('h1').textContent).toContain('Welcome to app!');
}));
});

0 comments on commit ed69082

Please sign in to comment.