We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b402f40 commit c34f9faCopy full SHA for c34f9fa
src/app/components/options-sidebar/time-clock/time-clock.component.spec.ts
@@ -30,13 +30,13 @@ describe('TimeClockComponent', () => {
30
expect(component).toBeTruthy();
31
});
32
33
- it('should have p tag as \'time-clock works!\'', async(() => {
+ it('should have p tag as \'Dario clocked out at hh:mm:ss\'', async(() => {
34
// tslint:disable-next-line: no-shadowed-variable
35
const { app, fixture } = setup();
36
fixture.detectChanges();
37
const compile = fixture.debugElement.nativeElement;
38
const ptag = compile.querySelector('p');
39
- expect(ptag.textContent).toBe('time-clock works!');
+ expect(ptag.textContent).toBe('Dario clocked out at hh:mm:ss');
40
}));
41
42
0 commit comments