Files
marc-en-tineke-2024/src/app/landing-page/landing-page.component.spec.ts
Marc Fokkert 4357d4f5c7 Add localization
Add pages
2024-05-29 21:07:46 +02:00

24 lines
632 B
TypeScript

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