Sengi-Windows-MacOS-Linux/src/app/components/tutorial/tutorial.component.spec.ts

26 lines
643 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { TutorialComponent } from './tutorial.component';
xdescribe('TutorialComponent', () => {
let component: TutorialComponent;
let fixture: ComponentFixture<TutorialComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ TutorialComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TutorialComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});