interactive-mining/interactive-mining-angular-.../src/app/stepsnvabar/stepsnvabar.component.spec.ts

26 lines
681 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 { StepsnvabarComponent } from './stepsnvabar.component';
describe('StepsnvabarComponent', () => {
let component: StepsnvabarComponent;
let fixture: ComponentFixture<StepsnvabarComponent>;
2021-06-14 15:34:40 +02:00
beforeEach(waitForAsync(() => {
2018-02-28 12:41:06 +01:00
TestBed.configureTestingModule({
declarations: [ StepsnvabarComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(StepsnvabarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});