Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use back-ticks
  • Loading branch information
daros10 committed Mar 17, 2020
commit 8556927416dce08962a418ccd82b7a483600c251
1 change: 0 additions & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { TimeClockComponent } from './components/options-sidebar/time-clock/time
import { ProjectManagementComponent } from './components/options-sidebar/project-management/project-management.component';
import { ProjectListComponent } from './components/shared/project-list/project-list.component';
import { CreateProjectComponent } from './components/shared/create-project/create-project.component';
import { TimeClockComponent } from './components/options-sidebar/time-clock/time-clock.component';
import { DetailsFieldsComponent } from './components/shared/details-fields/details-fields.component';
import { ProjectListHoverComponent } from './components/shared/project-list-hover/project-list-hover.component';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { async, ComponentFixture, TestBed } from "@angular/core/testing";
import { By } from "@angular/platform-browser";
import { DebugElement } from "@angular/core";
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { TimeClockComponent } from './time-clock.component';
import { ProjectListHoverComponent } from '../../shared/project-list-hover/project-list-hover.component';

import { TimeClockComponent } from "./time-clock.component";
import { ProjectListHoverComponent } from "../../shared/project-list-hover/project-list-hover.component";

describe("TimeClockComponent", () => {
describe('TimeClockComponent', () => {
let component: TimeClockComponent;
let fixture: ComponentFixture<TimeClockComponent>;
let de: DebugElement;
Expand All @@ -30,7 +29,7 @@ describe("TimeClockComponent", () => {
fixture.detectChanges();
});

it("should be created", () => {
it('should be created', () => {
expect(component).toBeTruthy();
});

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

it("should set showfileds as true", () => {
it('should set showfileds as true', () => {
const show = true;
component.setShowFields(show);
expect(component.showFields).toBe(true);
Expand Down