pdnsmanager/frontend/src/app/partials/sort/sort.component.spec.ts

26 lines
618 B
TypeScript
Raw Normal View History

2017-07-23 16:24:52 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SortComponent } from './sort.component';
describe('SortComponent', () => {
let component: SortComponent;
let fixture: ComponentFixture<SortComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SortComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SortComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});