linux-web-console/ui/web-console/src/app/home/files/browser/browser.component.spec.ts

26 lines
635 B
TypeScript

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