py-match / src /app /intro-page /intro-page.component.spec.ts
pykara's picture
Upload 5840 files
38fa174 verified
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { IntroPageComponent } from './intro-page.component';
describe('IntroPageComponent', () => {
let component: IntroPageComponent;
let fixture: ComponentFixture<IntroPageComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [IntroPageComponent]
});
fixture = TestBed.createComponent(IntroPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});