Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-cox committed Mar 14, 2019
1 parent 0b457fb commit 2083cc8
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { BaseTestModules } from '../../../../../../../test-framework/cloud-foundry-endpoint-service.helper';
import { EndpointListHelper } from '../endpoint-list.helpers';
import { TableCellEndpointDetailsComponent } from './table-cell-endpoint-details.component';

describe('TableCellEndpointDetailsComponent', () => {
fdescribe('TableCellEndpointDetailsComponent', () => {
let component: TableCellEndpointDetailsComponent;
let fixture: ComponentFixture<TableCellEndpointDetailsComponent>;

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ TableCellEndpointDetailsComponent ]
declarations: [],
imports: [...BaseTestModules],
providers: [EndpointListHelper]
})
.compileComponents();
.compileComponents();
}));

beforeEach(() => {
Expand Down

0 comments on commit 2083cc8

Please sign in to comment.