Skip to content

Commit 8556927

Browse files
committed
use back-ticks
1 parent 4fe4adb commit 8556927

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

src/app/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { TimeClockComponent } from './components/options-sidebar/time-clock/time
1414
import { ProjectManagementComponent } from './components/options-sidebar/project-management/project-management.component';
1515
import { ProjectListComponent } from './components/shared/project-list/project-list.component';
1616
import { CreateProjectComponent } from './components/shared/create-project/create-project.component';
17-
import { TimeClockComponent } from './components/options-sidebar/time-clock/time-clock.component';
1817
import { DetailsFieldsComponent } from './components/shared/details-fields/details-fields.component';
1918
import { ProjectListHoverComponent } from './components/shared/project-list-hover/project-list-hover.component';
2019

src/app/components/options-sidebar/time-clock/time-clock.component.spec.ts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
import { async, ComponentFixture, TestBed } from "@angular/core/testing";
2-
import { By } from "@angular/platform-browser";
3-
import { DebugElement } from "@angular/core";
1+
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2+
import { By } from '@angular/platform-browser';
3+
import { DebugElement } from '@angular/core';
4+
import { TimeClockComponent } from './time-clock.component';
5+
import { ProjectListHoverComponent } from '../../shared/project-list-hover/project-list-hover.component';
46

5-
import { TimeClockComponent } from "./time-clock.component";
6-
import { ProjectListHoverComponent } from "../../shared/project-list-hover/project-list-hover.component";
7-
8-
describe("TimeClockComponent", () => {
7+
describe('TimeClockComponent', () => {
98
let component: TimeClockComponent;
109
let fixture: ComponentFixture<TimeClockComponent>;
1110
let de: DebugElement;
@@ -30,7 +29,7 @@ describe("TimeClockComponent", () => {
3029
fixture.detectChanges();
3130
});
3231

33-
it("should be created", () => {
32+
it('should be created', () => {
3433
expect(component).toBeTruthy();
3534
});
3635

@@ -43,7 +42,7 @@ describe("TimeClockComponent", () => {
4342
expect(ptag.textContent).toBe('Dario clocked out at hh:mm:ss');
4443
}));
4544

46-
it("should set showfileds as true", () => {
45+
it('should set showfileds as true', () => {
4746
const show = true;
4847
component.setShowFields(show);
4948
expect(component.showFields).toBe(true);

0 commit comments

Comments
 (0)