source: Sources/frontend/src/app/add-question/add-question.component.spec.ts

Last change on this file was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 635 bytes
Line 
1import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3import { AddQuestionComponent } from './add-question.component';
4
5describe('AddQuestionComponent', () => {
6 let component: AddQuestionComponent;
7 let fixture: ComponentFixture<AddQuestionComponent>;
8
9 beforeEach(async () => {
10 await TestBed.configureTestingModule({
11 declarations: [ AddQuestionComponent ]
12 })
13 .compileComponents();
14
15 fixture = TestBed.createComponent(AddQuestionComponent);
16 component = fixture.componentInstance;
17 fixture.detectChanges();
18 });
19
20 it('should create', () => {
21 expect(component).toBeTruthy();
22 });
23});
Note: See TracBrowser for help on using the repository browser.