blob: dce00cda14e74df89c642fef857553c89d88c2d9 [file] [log] [blame]
/* tslint:disable:no-unused-variable */
import {async, TestBed} from '@angular/core/testing';
import {MatIconModule} from '@angular/material/icon';
import {MatToolbarModule} from '@angular/material/toolbar';
import {NO_ERRORS_SCHEMA} from '@angular/core';
import {AppComponent} from './app.component';
describe('AppComponent', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [MatIconModule, MatToolbarModule],
declarations: [AppComponent],
schemas: [NO_ERRORS_SCHEMA],
});
TestBed.compileComponents();
});
it('should create the app', async(() => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
}));
});