source: src/Clients/Angular/finki-chattery/src/app/shared-app/components/generic/vote/vote.component.spec.ts

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

Preview question component

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