blob: e235de5c5c4556464c8c9a5690838131b06059a9 (
plain) (
blame)
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 { PageModelComponent } from './page-model.component';
describe('PageModelComponent', () => {
let component: PageModelComponent;
let fixture: ComponentFixture<PageModelComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ PageModelComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(PageModelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
|