Rename appliances to templates in order to support 2.2 API, Fixes #227

This commit is contained in:
ziajka
2018-12-11 14:26:44 +01:00
parent 3bff5af16e
commit ff8f595cd4
18 changed files with 112 additions and 112 deletions

View File

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