removed unused spec files

pull/9/head
Chris Veilleux 2018-10-22 21:51:44 -05:00
parent b5955e2c99
commit f566945d89
3 changed files with 0 additions and 65 deletions

View File

@ -1,25 +0,0 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SkillSummaryComponent } from './skill-summary.component';
describe('SkillSummaryComponent', () => {
let component: SkillSummaryComponent;
let fixture: ComponentFixture<SkillSummaryComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SkillSummaryComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SkillSummaryComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -1,25 +0,0 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SkillsComponent } from './skills.component';
describe('SkillsComponent', () => {
let component: SkillsComponent;
let fixture: ComponentFixture<SkillsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SkillsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SkillsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -1,15 +0,0 @@
import { TestBed, inject } from '@angular/core/testing';
import { SkillsService } from './skills.service';
describe('SkillsService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [SkillsService]
});
});
it('should be created', inject([SkillsService], (service: SkillsService) => {
expect(service).toBeTruthy();
}));
});