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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Erasmus <jerasmus@gitlab.com>2020-02-07 05:14:59 +0300
committerEvan Read <eread@gitlab.com>2020-02-07 05:14:59 +0300
commit654d129d594807e8ffd3cde05bd75b83e201f422 (patch)
treec0a708ede0c5b7d376a7cae4e2375ed385f3267e /jest.config.js
parent590d7eb66699d45d0bc791884663fefe399f6852 (diff)
Move specs `spec/javascripts/` -> `specs/frontend/`
Moved specs from `spec/javascripts/` to `specs/frontend/`
Diffstat (limited to 'jest.config.js')
-rw-r--r--jest.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jest.config.js b/jest.config.js
index 2a0bd2c5..f3d470ae 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -3,7 +3,7 @@ const moduleNameMapper = {
};
module.exports = {
- testMatch: ['<rootDir>/spec/javascripts/**/**/*_spec.js'],
+ testMatch: ['<rootDir>/spec/frontend/**/**/*_spec.js'],
moduleFileExtensions: ['js', 'json', 'vue'],
moduleNameMapper,
cacheDirectory: '<rootDir>/tmp/cache/jest',