Countdown added

This commit is contained in:
2022-01-04 23:39:58 +01:00
parent 58fac0aa1e
commit 6ae3e86cb9
14 changed files with 591 additions and 275 deletions

View File

@@ -0,0 +1,25 @@
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();
});
});