Last change
on this file since dedbf60 was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 3 months ago |
split group project and individual project into two separate folders
|
-
Property mode
set to
100644
|
File size:
621 bytes
|
Line | |
---|
1 | import { ComponentFixture, TestBed } from '@angular/core/testing';
|
---|
2 |
|
---|
3 | import { InputFieldComponent } from './input-field.component';
|
---|
4 |
|
---|
5 | describe('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.