blob: d9f75acda6807c87d494df4bdc8d81c7c821c6cf [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NO_ERRORS_SCHEMA } from '@angular/core';
import { TestingModule } from '../../../testing/testing.module';
import { JobListComponent } from './job-list.component';
describe('JobListComponent', () => {
let component: JobListComponent;
let fixture: ComponentFixture<JobListComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [ TestingModule ],
declarations: [ JobListComponent ],
schemas: [
/* avoid importing modules */
NO_ERRORS_SCHEMA
]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(JobListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});