fengxiang
2018-07-11 12b04f145bae740e1971036b1e2dfc1bc224d17b
src/app/routes/style/colors/colors.component.spec.ts
New file
@@ -0,0 +1,18 @@
import { TestBed, TestModuleMetadata } from '@angular/core/testing';
import { setUpTestBed } from '@testing/common.spec';
import { ColorsComponent } from './colors.component';
import { ColorService } from '../color.service';
describe('Component: Colors', () => {
  setUpTestBed(<TestModuleMetadata>{
    declarations: [ColorsComponent],
    providers: [ColorService],
  });
  it('should create an instance', () => {
    const fixture = TestBed.createComponent(ColorsComponent);
    const comp = fixture.debugElement.componentInstance;
    expect(comp).toBeTruthy();
  });
});