blob: ee0f8742a58b36d196510bbc3b69e3c2a88a5a93 [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 { InstanceDetailComponent } from './instance-detail.component';
describe('InstanceDetailComponent', () => {
let component: InstanceDetailComponent;
let fixture: ComponentFixture<InstanceDetailComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [TestingModule],
declarations: [InstanceDetailComponent],
schemas: [
/* avoid importing modules */
NO_ERRORS_SCHEMA,
],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(InstanceDetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
xit('should create', () => {
expect(component).toBeTruthy();
});
});