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:
authorJoas Schilling <coding@schilljs.com>2020-03-24 09:52:18 +0300
committerMarco Ambrosini <marcoambrosini@pm.me>2020-03-24 13:33:34 +0300
commit1fcfd99dc99b50c1f4a715ed78db9cab2952675a (patch)
treede82d86a3a3375e0568534b678d6d6a13e90d068 /jest.config.js
parente1ca03508640cfa733a68553a051b0931b9ba4bb (diff)
Execute unit tests on github
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'jest.config.js')
-rw-r--r--jest.config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jest.config.js b/jest.config.js
index 77eaf4b0a..de8cde53d 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -23,6 +23,6 @@
module.exports = {
preset: '@vue/cli-plugin-unit-jest/presets/no-babel',
// Allow tests in the src and in tests/unit folders
- testMatch: ['<rootDir>/src/**/*.(spec|test).(ts|js)', '<rootDir>/tests/unit/**/*.(spec|test).(ts|js)'],
- setupFilesAfterEnv: ['<rootDir>/tests/unit/setup.js'],
+ testMatch: ['<rootDir>/src/**/*.(spec|test).(ts|js)'],
+ setupFilesAfterEnv: ['<rootDir>/src/test-setup.js'],
}