diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-09-16 15:30:56 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-09-16 15:38:44 +0200 |
commit | 05cf940983bed37b9b29b496dbd3dea073fe21ee (patch) | |
tree | e743de4b64c24007bf7293a95f5a433d0c58264d /apps/files_sharing/tests/js | |
parent | 1978d3d6a279a4c60371b2cf809bd57e70f4ed35 (diff) | |
download | nextcloud-server-05cf940983bed37b9b29b496dbd3dea073fe21ee.tar.gz nextcloud-server-05cf940983bed37b9b29b496dbd3dea073fe21ee.zip |
Tentative fix for legacy file actions unit test side effect
Sometimes the JS unit test with legacy file actions fail.
This fix runs the legacy file actions tests on a dummy instead of the
real one.
Diffstat (limited to 'apps/files_sharing/tests/js')
-rw-r--r-- | apps/files_sharing/tests/js/appSpec.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/files_sharing/tests/js/appSpec.js b/apps/files_sharing/tests/js/appSpec.js index 3f9cc61da5d..49bca568001 100644 --- a/apps/files_sharing/tests/js/appSpec.js +++ b/apps/files_sharing/tests/js/appSpec.js @@ -57,6 +57,16 @@ describe('OCA.Sharing.App tests', function() { }); }); describe('file actions', function() { + var oldLegacyFileActions; + + beforeEach(function() { + oldLegacyFileActions = window.FileActions; + window.FileActions = new OCA.Files.FileActions(); + }); + + afterEach(function() { + window.FileActions = oldLegacyFileActions; + }); it('provides default file actions', function() { _.each([fileListIn, fileListOut], function(fileList) { var fileActions = fileList.fileActions; |