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

26 lines
700 B
TypeScript

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