2020-01-15 17:55:22 +01:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2020-05-01 19:10:17 +02:00
|
|
|
import { EditOptionsComponent } from './edit-options.component';
|
2020-01-15 17:55:22 +01:00
|
|
|
|
2020-05-01 19:10:17 +02:00
|
|
|
describe('EditOptionsComponent', () => {
|
|
|
|
let component: EditOptionsComponent;
|
|
|
|
let fixture: ComponentFixture<EditOptionsComponent>;
|
2020-01-15 17:55:22 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-05-01 19:10:17 +02:00
|
|
|
declarations: [EditOptionsComponent],
|
2020-04-21 10:50:26 +02:00
|
|
|
}).compileComponents();
|
|
|
|
}));
|
2020-01-15 17:55:22 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(() => {
|
2020-05-01 19:10:17 +02:00
|
|
|
fixture = TestBed.createComponent(EditOptionsComponent);
|
2020-04-21 10:50:26 +02:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2020-01-15 17:55:22 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2020-01-15 17:55:22 +01:00
|
|
|
});
|