summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-09 13:07:58 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-09 13:20:41 +0100
commit17e8723adc5a616c745924f8afebeb614376d737 (patch)
treec5a8fc178f6dd870748b488a7f5be10c0c0e6681 /tests
parent0f72d40d46e426bbb53750ced048a0da2212a796 (diff)
Fix tests & add MOVE
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/setup.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/setup.js b/tests/setup.js
new file mode 100644
index 00000000..feb4c9bf
--- /dev/null
+++ b/tests/setup.js
@@ -0,0 +1,27 @@
+/*
+ * @copyright 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+require('jsdom-global')()
+global.expect = require('chai').expect
+
+global.OC = {
+ getLocale: () => 'en'
+}