From 5d9bb5e2471b5266496a1bfd0af11e766de917c2 Mon Sep 17 00:00:00 2001 From: "John Molakvoæ (skjnldsv)" Date: Wed, 17 Mar 2021 08:25:31 +0100 Subject: Lint fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- apps/files_external/tests/appSpec.js | 98 ++++++++++++++++++------------------ 1 file changed, 49 insertions(+), 49 deletions(-) (limited to 'apps/files_external') diff --git a/apps/files_external/tests/appSpec.js b/apps/files_external/tests/appSpec.js index a834d96e2c0..fa969f289f0 100644 --- a/apps/files_external/tests/appSpec.js +++ b/apps/files_external/tests/appSpec.js @@ -20,80 +20,80 @@ */ describe('OCA.Files_External.App tests', function() { - var App = OCA.Files_External.App; - var fileList; + const App = OCA.Files_External.App + let fileList beforeEach(function() { $('#testArea').append( - '
' + - '
  • Files
  • ' + - '
  • ' + - '
  • ' + - '
' + - '
' + - '' + - '' + - '
' + - '' - ); - fileList = App.initList($('#app-content-extstoragemounts')); - }); + '
' + + '
  • Files
  • ' + + '
  • ' + + '
  • ' + + '
' + + '
' + + '' + + '' + + '
' + + '' + ) + fileList = App.initList($('#app-content-extstoragemounts')) + }) afterEach(function() { - App.fileList = null; - fileList.destroy(); - fileList = null; - }); + App.fileList = null + fileList.destroy() + fileList = null + }) describe('initialization', function() { it('inits external mounts list on show', function() { - expect(App.fileList).toBeDefined(); - }); - }); + expect(App.fileList).toBeDefined() + }) + }) describe('file actions', function() { it('provides default file actions', function() { - var fileActions = fileList.fileActions; + const fileActions = fileList.fileActions - expect(fileActions.actions.all).toBeDefined(); - expect(fileActions.actions.all.Delete).toBeDefined(); - expect(fileActions.actions.all.Rename).toBeDefined(); - expect(fileActions.actions.all.Download).toBeDefined(); + expect(fileActions.actions.all).toBeDefined() + expect(fileActions.actions.all.Delete).toBeDefined() + expect(fileActions.actions.all.Rename).toBeDefined() + expect(fileActions.actions.all.Download).toBeDefined() - expect(fileActions.defaults.dir).toEqual('Open'); - }); + expect(fileActions.defaults.dir).toEqual('Open') + }) it('redirects to files app when opening a directory', function() { - var oldList = OCA.Files.App.fileList; + const oldList = OCA.Files.App.fileList // dummy new list to make sure it exists - OCA.Files.App.fileList = new OCA.Files.FileList($('
')); + OCA.Files.App.fileList = new OCA.Files.FileList($('
')) - var setActiveViewStub = sinon.stub(OCA.Files.App, 'setActiveView'); + const setActiveViewStub = sinon.stub(OCA.Files.App, 'setActiveView') // create dummy table so we can click the dom - var $table = '
'; - $('#app-content-extstoragemounts').append($table); + const $table = '
' + $('#app-content-extstoragemounts').append($table) - App._inFileList = null; - fileList = App.initList($('#app-content-extstoragemounts')); + App._inFileList = null + fileList = App.initList($('#app-content-extstoragemounts')) fileList.setFiles([{ name: 'testdir', type: 'dir', path: '/somewhere/inside/subdir', counterParts: ['user2'], - shareOwner: 'user2' - }]); + shareOwner: 'user2', + }]) - fileList.findFileEl('testdir').find('td a.name').click(); + fileList.findFileEl('testdir').find('td a.name').click() - expect(OCA.Files.App.fileList.getCurrentDirectory()).toEqual('/somewhere/inside/subdir/testdir'); + expect(OCA.Files.App.fileList.getCurrentDirectory()).toEqual('/somewhere/inside/subdir/testdir') - expect(setActiveViewStub.calledOnce).toEqual(true); - expect(setActiveViewStub.calledWith('files')).toEqual(true); + expect(setActiveViewStub.calledOnce).toEqual(true) + expect(setActiveViewStub.calledWith('files')).toEqual(true) - setActiveViewStub.restore(); + setActiveViewStub.restore() // restore old list - OCA.Files.App.fileList = oldList; - }); - }); -}); + OCA.Files.App.fileList = oldList + }) + }) +}) -- cgit v1.2.3