organizee-front/src/app/pages/page-support/page-support.component.spec.ts
2022-02-26 14:19:27 +01:00

25 lines
662 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PageSupportComponent } from './page-support.component';
describe('PageSupportComponent', () => {
let component: PageSupportComponent;
let fixture: ComponentFixture<PageSupportComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ PageSupportComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(PageSupportComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});