blob: 229e9d465893e29395764cc64e12e6bcfea661b8 [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 { InstanceDetailComponent } from './instance-detail.component';
describe('InstanceDetailComponent', () => {
let component: InstanceDetailComponent;
let fixture: ComponentFixture<InstanceDetailComponent>;
beforeEach(async(() => {
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();
});
});