source: bus-n-go-pavel-216049/bus-n-go-frontend/src/app/components/input-field/input-field.component.spec.ts@ baf4cc4

Last change on this file since baf4cc4 was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 4 weeks ago

split group project and individual project into two separate folders

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