blob: 047f2e89deae95c6638ee21ef9a0af0e3ae682f8 (
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 {ComponentFixture, TestBed } from '@angular/core/testing';
import { TreeNodeHeaderPropertiesComponent } from './tree-node-header-properties.component';
describe('TreeNodeHeaderPropertiesComponent', () => {
let component: TreeNodeHeaderPropertiesComponent;
let fixture: ComponentFixture<TreeNodeHeaderPropertiesComponent>;
beforeAll(done => (async () => {
TestBed.configureTestingModule({
declarations: [ TreeNodeHeaderPropertiesComponent ]
});
await TestBed.compileComponents();
fixture = TestBed.createComponent(TreeNodeHeaderPropertiesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
})().then(done).catch(done.fail));
test('should create', () => {
expect(component).toBeTruthy();
});
});
|