blob: 9a5c01745f51dce4bdf0be2f3d3a989f187430ef [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 { PartitionListComponent } from './partition-list.component';
import { ResourceService } from '../shared/resource.service';
describe('PartitionListComponent', () => {
let component: PartitionListComponent;
let fixture: ComponentFixture<PartitionListComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
TestingModule
],
providers: [
ResourceService
],
declarations: [ PartitionListComponent ],
schemas: [
/* avoid importing modules */
NO_ERRORS_SCHEMA
]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(PartitionListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});