blob: bfcc2c5a3d0bc6941259deff3c70ae12a180902c [file] [log] [blame]
import { waitForAsync, 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(waitForAsync(() => {
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();
});
});