blob: e0f26b2cb1fce1cd2e68479c6d87dc811f7a3060 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | import { ComponentFixture, TestBed } from '@angular/core/testing';
import { UpdateExperimentDialogComponent } from './update-experiment-dialog.component';
describe('UpdateExperimentDialogComponent', () => {
  let component: UpdateExperimentDialogComponent;
  let fixture: ComponentFixture<UpdateExperimentDialogComponent>;
  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ UpdateExperimentDialogComponent ]
    })
    .compileComponents();
  });
  beforeEach(() => {
    fixture = TestBed.createComponent(UpdateExperimentDialogComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });
  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
 |