Last change
on this file since 0e4e3d1 was 8423429, checked in by AngelNasev <angel.nasev@…>, 17 months ago |
Add backend and frontend projects
|
-
Property mode
set to
100644
|
File size:
663 bytes
|
Rev | Line | |
---|
[8423429] | 1 | import { ComponentFixture, TestBed } from '@angular/core/testing';
|
---|
| 2 |
|
---|
| 3 | import { QuestionDetailsComponent } from './question-details.component';
|
---|
| 4 |
|
---|
| 5 | describe('QuestionDetailsComponent', () => {
|
---|
| 6 | let component: QuestionDetailsComponent;
|
---|
| 7 | let fixture: ComponentFixture<QuestionDetailsComponent>;
|
---|
| 8 |
|
---|
| 9 | beforeEach(async () => {
|
---|
| 10 | await TestBed.configureTestingModule({
|
---|
| 11 | declarations: [ QuestionDetailsComponent ]
|
---|
| 12 | })
|
---|
| 13 | .compileComponents();
|
---|
| 14 |
|
---|
| 15 | fixture = TestBed.createComponent(QuestionDetailsComponent);
|
---|
| 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.