interactive-mining/interactive-mining-angular-.../src/app/configuration/configuration.component.spe...

26 lines
695 B
TypeScript
Raw Normal View History

2021-06-14 15:34:40 +02:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2018-02-28 12:41:06 +01:00
import { ConfigurationComponent } from './configuration.component';
describe('ConfigurationComponent', () => {
let component: ConfigurationComponent;
let fixture: ComponentFixture<ConfigurationComponent>;
2021-06-14 15:34:40 +02:00
beforeEach(waitForAsync(() => {
2018-02-28 12:41:06 +01:00
TestBed.configureTestingModule({
declarations: [ ConfigurationComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ConfigurationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});