syncthing/next-gen-gui/src/app/lists/status-list/status-list.component.spec.ts

26 lines
657 B
TypeScript
Raw Normal View History

2020-03-11 03:51:50 +01:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { StatusListComponent } from './status-list.component';
describe('StatusListComponent', () => {
let component: StatusListComponent;
let fixture: ComponentFixture<StatusListComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [StatusListComponent]
})
.compileComponents();
2020-03-11 03:51:50 +01:00
}));
beforeEach(() => {
fixture = TestBed.createComponent(StatusListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
2020-03-11 03:51:50 +01:00
expect(component).toBeTruthy();
});
});