remove fetchNodes from generic page component (#372)

This commit is contained in:
Cilibiu Bogdan
2018-05-31 16:35:57 +03:00
committed by Denys Vuika
parent 71ac843c5f
commit e94bf5340d
9 changed files with 0 additions and 28 deletions

View File

@@ -156,10 +156,6 @@ describe('RecentFiles Routed Component', () => {
});
describe('onNodeDoubleClick()', () => {
beforeEach(() => {
spyOn(component, 'fetchNodes').and.callFake(val => val);
});
it('open preview if node is file', () => {
spyOn(router, 'navigate').and.stub();
const node: any = { id: 'node-id', isFile: true };