diff --git a/test/unit/spec/narrative_core/upload/fileUploadWidget-spec.js b/test/unit/spec/narrative_core/upload/fileUploadWidget-spec.js index 9c1e85055e..800b516c49 100644 --- a/test/unit/spec/narrative_core/upload/fileUploadWidget-spec.js +++ b/test/unit/spec/narrative_core/upload/fileUploadWidget-spec.js @@ -62,19 +62,19 @@ define([ jasmine.Ajax.uninstall(); }); - it('Should be able to set and retrieve the path', () => { - const $node = $('
'), - fuw = new FileUploadWidget($node, { - path: '/', - userInfo: { - user: fakeUser, - globusLinked: true - } - }); - const newPath = 'newPath'; - fuw.setPath(newPath); - expect(fuw.getPath()).toEqual(newPath); - }); + it('Should be able to set and retrieve the path', () => { + const $node = $('
'), + fuw = new FileUploadWidget($node, { + path: '/', + userInfo: { + user: fakeUser, + globusLinked: true + } + }); + const newPath = 'newPath'; + fuw.setPath(newPath); + expect(fuw.getPath()).toEqual(newPath); + }); it('Should start and succeed on an upload when a file is given', (done) => { const filename='foo.txt';