Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2020-03-18 20:26:04 +0300
committerMarco Ambrosini <marcoambrosini@pm.me>2020-03-24 12:16:37 +0300
commit9b661fcbe6cb01ed3c8eba028c6b09bd974ae0f4 (patch)
tree5a0dd88fdbab24073addc56761d4e5103cf7932f /jest.config.js
parent1614c11e88a06f23eb21f1b9dc2c0f04bd31687b (diff)
Add avatarwrapper component
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'jest.config.js')
-rw-r--r--jest.config.js25
1 files changed, 24 insertions, 1 deletions
diff --git a/jest.config.js b/jest.config.js
index c33a3d6e4..026698f51 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -1,3 +1,26 @@
+/*
+ * @copyright Copyright (c) 2020 Marco Ambrosini <marcoambrosini@pm.me>
+ *
+ * @author Marco Ambrosini <marcoambrosini@pm.me>
+ *
+ * @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/>.
+ *
+ */
+
module.exports = {
- preset: '@vue/cli-plugin-unit-jest/presets/no-babel'
+ preset: '@vue/cli-plugin-unit-jest/presets/no-babel',
+ setupFilesAfterEnv: ['<rootDir>/tests/unit/setup.js']
}