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