source: src/Clients/Angular/finki-chattery/src/app/shared-app/components/generic/file-upload/file-upload.component.spec.ts@ e6a6d9a

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

Initialized FinkiChattery project

  • Property mode set to 100644
File size: 655 bytes
Line 
1import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3import { FileUploadComponent } from './file-upload.component';
4
5describe('FileUploadComponent', () => {
6 let component: FileUploadComponent;
7 let fixture: ComponentFixture<FileUploadComponent>;
8
9 beforeEach(async () => {
10 await TestBed.configureTestingModule({
11 declarations: [ FileUploadComponent ]
12 })
13 .compileComponents();
14 });
15
16 beforeEach(() => {
17 fixture = TestBed.createComponent(FileUploadComponent);
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.