Newer
Older
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
26
27
28
29
30
31
32
33
34
35
36
37
38
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SectionComponent } from './section.component';
describe('SectionComponent', () => {
let component: SectionComponent;
let fixture: ComponentFixture<SectionComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [
SectionComponent
]
})
.compileComponents();
});
beforeEach(async () => {
fixture = TestBed.createComponent(SectionComponent);
component = fixture.componentInstance;
component.section = {
elements: [],
height: 400,
backgroundColor: '#ffffff',
dynamicPositioning: true,
autoColumnSize: true,
autoRowSize: true,
gridColumnSizes: '1fr 1fr',
gridRowSizes: '1fr',
activeAfterID: ''
};
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});