blob: 2e37ff697052a7522dbeefdda3eb2c01053c6bee [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 { PartitionListComponent } from './partition-list.component';
import { ResourceService } from '../shared/resource.service';
describe('PartitionListComponent', () => {
let component: PartitionListComponent;
let fixture: ComponentFixture<PartitionListComponent>;
beforeEach(waitForAsync(() => {
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();
});
});