-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
217 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -165,4 +165,3 @@ ion-item { | |
ion-item ion-label { | ||
margin-right: 0px; // fixes ios margin at the right side | ||
} | ||
|
33 changes: 16 additions & 17 deletions
33
src/app/components/dashboard/group-selector/group-selector.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { ComponentFixture, TestBed } from '@angular/core/testing' | ||
|
||
import { GroupSelectorComponent } from './group-selector.component'; | ||
import { GroupSelectorComponent } from './group-selector.component' | ||
|
||
describe('GroupSelectorComponent', () => { | ||
let component: GroupSelectorComponent; | ||
let fixture: ComponentFixture<GroupSelectorComponent>; | ||
let component: GroupSelectorComponent | ||
let fixture: ComponentFixture<GroupSelectorComponent> | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [GroupSelectorComponent] | ||
}) | ||
.compileComponents(); | ||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [GroupSelectorComponent], | ||
}).compileComponents() | ||
|
||
fixture = TestBed.createComponent(GroupSelectorComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
fixture = TestBed.createComponent(GroupSelectorComponent) | ||
component = fixture.componentInstance | ||
fixture.detectChanges() | ||
}) | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
it('should create', () => { | ||
expect(component).toBeTruthy() | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 16 additions & 17 deletions
33
src/app/pages/notification-detail/accordion-indexslot/accordion-indexslot.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { ComponentFixture, TestBed } from '@angular/core/testing' | ||
|
||
import { AccordionIndexslotComponent } from './accordion-indexslot.component'; | ||
import { AccordionIndexslotComponent } from './accordion-indexslot.component' | ||
|
||
describe('AccordionIndexslotComponent', () => { | ||
let component: AccordionIndexslotComponent; | ||
let fixture: ComponentFixture<AccordionIndexslotComponent>; | ||
let component: AccordionIndexslotComponent | ||
let fixture: ComponentFixture<AccordionIndexslotComponent> | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [AccordionIndexslotComponent] | ||
}) | ||
.compileComponents(); | ||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [AccordionIndexslotComponent], | ||
}).compileComponents() | ||
|
||
fixture = TestBed.createComponent(AccordionIndexslotComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
fixture = TestBed.createComponent(AccordionIndexslotComponent) | ||
component = fixture.componentInstance | ||
fixture.detectChanges() | ||
}) | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
it('should create', () => { | ||
expect(component).toBeTruthy() | ||
}) | ||
}) |
33 changes: 16 additions & 17 deletions
33
src/app/pages/notification-detail/more/more.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { ComponentFixture, TestBed } from '@angular/core/testing' | ||
|
||
import { MoreComponent } from './more.component'; | ||
import { MoreComponent } from './more.component' | ||
|
||
describe('MoreComponent', () => { | ||
let component: MoreComponent; | ||
let fixture: ComponentFixture<MoreComponent>; | ||
let component: MoreComponent | ||
let fixture: ComponentFixture<MoreComponent> | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [MoreComponent] | ||
}) | ||
.compileComponents(); | ||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [MoreComponent], | ||
}).compileComponents() | ||
|
||
fixture = TestBed.createComponent(MoreComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
fixture = TestBed.createComponent(MoreComponent) | ||
component = fixture.componentInstance | ||
fixture.detectChanges() | ||
}) | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
it('should create', () => { | ||
expect(component).toBeTruthy() | ||
}) | ||
}) |
33 changes: 16 additions & 17 deletions
33
src/app/pages/notification-detail/notification-detail.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { ComponentFixture, TestBed } from '@angular/core/testing' | ||
|
||
import { NotificationDetailComponent } from './notification-detail.component'; | ||
import { NotificationDetailComponent } from './notification-detail.component' | ||
|
||
describe('NotificationDetailComponent', () => { | ||
let component: NotificationDetailComponent; | ||
let fixture: ComponentFixture<NotificationDetailComponent>; | ||
let component: NotificationDetailComponent | ||
let fixture: ComponentFixture<NotificationDetailComponent> | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [NotificationDetailComponent] | ||
}) | ||
.compileComponents(); | ||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [NotificationDetailComponent], | ||
}).compileComponents() | ||
|
||
fixture = TestBed.createComponent(NotificationDetailComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
fixture = TestBed.createComponent(NotificationDetailComponent) | ||
component = fixture.componentInstance | ||
fixture.detectChanges() | ||
}) | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
it('should create', () => { | ||
expect(component).toBeTruthy() | ||
}) | ||
}) |
33 changes: 16 additions & 17 deletions
33
src/app/pages/notification-history/base-history-item/base-history-item.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { ComponentFixture, TestBed } from '@angular/core/testing' | ||
|
||
import { BaseHistoryItemComponent } from './base-history-item.component'; | ||
import { BaseHistoryItemComponent } from './base-history-item.component' | ||
|
||
describe('BaseHistoryItemComponent', () => { | ||
let component: BaseHistoryItemComponent; | ||
let fixture: ComponentFixture<BaseHistoryItemComponent>; | ||
let component: BaseHistoryItemComponent | ||
let fixture: ComponentFixture<BaseHistoryItemComponent> | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [BaseHistoryItemComponent] | ||
}) | ||
.compileComponents(); | ||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [BaseHistoryItemComponent], | ||
}).compileComponents() | ||
|
||
fixture = TestBed.createComponent(BaseHistoryItemComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
fixture = TestBed.createComponent(BaseHistoryItemComponent) | ||
component = fixture.componentInstance | ||
fixture.detectChanges() | ||
}) | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
it('should create', () => { | ||
expect(component).toBeTruthy() | ||
}) | ||
}) |
33 changes: 16 additions & 17 deletions
33
src/app/pages/notification-history/client-history-item/client-history-item.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { ComponentFixture, TestBed } from '@angular/core/testing' | ||
|
||
import { ClientHistoryItemComponent } from './client-history-item.component'; | ||
import { ClientHistoryItemComponent } from './client-history-item.component' | ||
|
||
describe('ClientHistoryItemComponent', () => { | ||
let component: ClientHistoryItemComponent; | ||
let fixture: ComponentFixture<ClientHistoryItemComponent>; | ||
let component: ClientHistoryItemComponent | ||
let fixture: ComponentFixture<ClientHistoryItemComponent> | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [ClientHistoryItemComponent] | ||
}) | ||
.compileComponents(); | ||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [ClientHistoryItemComponent], | ||
}).compileComponents() | ||
|
||
fixture = TestBed.createComponent(ClientHistoryItemComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
fixture = TestBed.createComponent(ClientHistoryItemComponent) | ||
component = fixture.componentInstance | ||
fixture.detectChanges() | ||
}) | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
it('should create', () => { | ||
expect(component).toBeTruthy() | ||
}) | ||
}) |
33 changes: 16 additions & 17 deletions
33
...pp/pages/notification-history/machine-history-item/machine-history-item.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { ComponentFixture, TestBed } from '@angular/core/testing' | ||
|
||
import { MachineHistoryItemComponent } from './machine-history-item.component'; | ||
import { MachineHistoryItemComponent } from './machine-history-item.component' | ||
|
||
describe('MachineHistoryItemComponent', () => { | ||
let component: MachineHistoryItemComponent; | ||
let fixture: ComponentFixture<MachineHistoryItemComponent>; | ||
let component: MachineHistoryItemComponent | ||
let fixture: ComponentFixture<MachineHistoryItemComponent> | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [MachineHistoryItemComponent] | ||
}) | ||
.compileComponents(); | ||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [MachineHistoryItemComponent], | ||
}).compileComponents() | ||
|
||
fixture = TestBed.createComponent(MachineHistoryItemComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
fixture = TestBed.createComponent(MachineHistoryItemComponent) | ||
component = fixture.componentInstance | ||
fixture.detectChanges() | ||
}) | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
it('should create', () => { | ||
expect(component).toBeTruthy() | ||
}) | ||
}) |
33 changes: 16 additions & 17 deletions
33
...pp/pages/notification-history/network-history-item/network-history-item.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { ComponentFixture, TestBed } from '@angular/core/testing' | ||
|
||
import { NetworkHistoryItemComponent } from './network-history-item.component'; | ||
import { NetworkHistoryItemComponent } from './network-history-item.component' | ||
|
||
describe('NetworkHistoryItemComponent', () => { | ||
let component: NetworkHistoryItemComponent; | ||
let fixture: ComponentFixture<NetworkHistoryItemComponent>; | ||
let component: NetworkHistoryItemComponent | ||
let fixture: ComponentFixture<NetworkHistoryItemComponent> | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [NetworkHistoryItemComponent] | ||
}) | ||
.compileComponents(); | ||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [NetworkHistoryItemComponent], | ||
}).compileComponents() | ||
|
||
fixture = TestBed.createComponent(NetworkHistoryItemComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
fixture = TestBed.createComponent(NetworkHistoryItemComponent) | ||
component = fixture.componentInstance | ||
fixture.detectChanges() | ||
}) | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); | ||
it('should create', () => { | ||
expect(component).toBeTruthy() | ||
}) | ||
}) |
Oops, something went wrong.