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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'jest.config.scripts.js')
-rw-r--r--jest.config.scripts.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/jest.config.scripts.js b/jest.config.scripts.js
new file mode 100644
index 00000000000..2f4ef3906a1
--- /dev/null
+++ b/jest.config.scripts.js
@@ -0,0 +1,8 @@
+const baseConfig = require('./jest.config.base');
+
+module.exports = {
+ ...baseConfig('spec/frontend', {
+ roots: ['<rootDir>/scripts/lib/', '<rootDir>/spec/frontend/'],
+ }),
+ testMatch: [],
+};