source: src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/ask-question-shared/ask-question-shared.component.spec.ts@ 32cd040

dev
Last change on this file since 32cd040 was 32cd040, checked in by Стојков Марко <mst@…>, 3 years ago

Added generic component for asking questions

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