This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Hochzeit/ui/src/app/countdown/countdown.component.spec.ts
2022-01-04 23:39:58 +01:00

26 lines
647 B
TypeScript

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