blob: d945e25d34a2c888a6d5808a5dc6176590e92615 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { InputIntentStateComponent } from './input-intent-state.component';
describe('InputIntentStateComponent', () => {
let component: InputIntentStateComponent;
let fixture: ComponentFixture<InputIntentStateComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ InputIntentStateComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(InputIntentStateComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
|