Skip to content
Snippets Groups Projects
page.component.spec.ts 690 B
Newer Older
  • Learn to ignore specific revisions
  • import { ComponentFixture, TestBed } from '@angular/core/testing';
    import { PageComponent } from './page.component';
    
    import { Page } from 'common/models/page';
    
    describe('PageComponent', () => {
    
      let component: PageComponent;
      let fixture: ComponentFixture<PageComponent>;
    
      beforeEach(async () => {
        await TestBed.configureTestingModule({
          declarations: [ PageComponent ]
        })
          .compileComponents();
      });
    
      beforeEach(() => {
        fixture = TestBed.createComponent(PageComponent);
        component = fixture.componentInstance;
    
        component.page = new Page();
    
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    
    });