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

26 lines
695 B
TypeScript
Executable File

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ConfigurationComponent } from './configuration.component';
describe('ConfigurationComponent', () => {
let component: ConfigurationComponent;
let fixture: ComponentFixture<ConfigurationComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ ConfigurationComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ConfigurationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});