0d52aaaa45
- New component for similar situations - Prevents overwriting and discarding of changes, if an 'autoupdate' is triggered
26 lines
767 B
TypeScript
26 lines
767 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ExtensionFieldComponent } from './extension-field.component';
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
|
|
|
describe('ExtensionFieldComponent', () => {
|
|
let component: ExtensionFieldComponent;
|
|
let fixture: ComponentFixture<ExtensionFieldComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [E2EImportsModule]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ExtensionFieldComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|