Rename search tab to files tab
Signed-off-by: trivernis <trivernis@protonmail.com>pull/4/head
parent
9bd0e5920d
commit
78b7c03da5
@ -1,20 +1,20 @@
|
|||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
import { SearchTabComponent } from './search-tab.component';
|
import { FilesTabComponent } from './files-tab.component';
|
||||||
|
|
||||||
describe('SearchPageComponent', () => {
|
describe('SearchPageComponent', () => {
|
||||||
let component: SearchTabComponent;
|
let component: FilesTabComponent;
|
||||||
let fixture: ComponentFixture<SearchTabComponent>;
|
let fixture: ComponentFixture<FilesTabComponent>;
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ SearchTabComponent ]
|
declarations: [ FilesTabComponent ]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(SearchTabComponent);
|
fixture = TestBed.createComponent(FilesTabComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
Loading…
Reference in New Issue