23 lines
596 B
TypeScript
23 lines
596 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { BrowseComponent } from './browse.component';
|
|
|
|
describe('BrowseComponent', () => {
|
|
let component: BrowseComponent;
|
|
let fixture: ComponentFixture<BrowseComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [BrowseComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(BrowseComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|