]> source.dussan.org Git - sonarqube.git/commitdiff
Update Jest config for extensions
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>
Thu, 16 Aug 2018 14:41:54 +0000 (16:41 +0200)
committerSonarTech <sonartech@sonarsource.com>
Mon, 20 Aug 2018 18:21:03 +0000 (20:21 +0200)
server/sonar-vsts/package.json
server/sonar-vsts/scripts/test.js [deleted file]

index 6a31b77bbd88275c3208822358ccc86a55efb3eb..1675be0ffa2e136e3ad13cc0a0b705f24220c9a3 100644 (file)
   "scripts": {
     "start": "node scripts/start.js",
     "build": "node scripts/build.js",
-    "test": "node scripts/test.js",
-    "coverage": "npm test -- --coverage",
+    "test": "jest --passWithNoTests",
     "format": "prettier --write --list-different 'src/main/js/!(libs)/**/*.{js,ts,tsx,css}'",
     "lint": "eslint --ext js,ts,tsx --quiet src/main/js",
     "lint-report": "eslint --ext js,ts,tsx -f json -o eslint-report.json src/main/js",
-    "prettier-check": "prettier --list-different 'src/main/js/!(libs)/**/*.{js,ts,tsx,css}'",
     "ts-check": "tsc --noEmit",
-    "validate":
-      "yarn lint && yarn ts-check && yarn prettier-check && NODE_ENV=test jest --passWithNoTests"
+    "prettier-check": "prettier --list-different 'src/main/js/!(libs)/**/*.{js,ts,tsx,css}'",
+    "validate": "yarn lint && yarn ts-check && yarn prettier-check && yarn test"
   },
   "engines": {
     "node": ">=6"
   ],
   "jest": {
     "coverageDirectory": "<rootDir>/target/coverage",
-    "coveragePathIgnorePatterns": ["<rootDir>/node_modules", "<rootDir>/tests"],
-    "moduleFileExtensions": ["ts", "tsx", "js", "json"],
+    "coveragePathIgnorePatterns": [
+      "<rootDir>/node_modules",
+      "<rootDir>/tests"
+    ],
+    "moduleFileExtensions": [
+      "ts",
+      "tsx",
+      "js",
+      "json"
+    ],
     "moduleNameMapper": {
-      "^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
-        "<rootDir>/config/jest/FileStub.js",
+      "^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/FileStub.js",
       "^.+\\.css$": "<rootDir>/config/jest/CSSStub.js"
     },
     "setupFiles": [
       "<rootDir>/config/jest/SetupTestEnvironment.js",
       "<rootDir>/config/jest/SetupEnzyme.js"
     ],
-    "snapshotSerializers": ["enzyme-to-json/serializer"],
+    "snapshotSerializers": [
+      "enzyme-to-json/serializer"
+    ],
     "testPathIgnorePatterns": [
       "<rootDir>/node_modules",
       "<rootDir>/src/main/webapp",
     ],
     "testRegex": "(/__tests__/.*|\\-test)\\.(ts|tsx|js)$",
     "transform": {
-      "^.+\\.js$": "<rootDir>/node_modules/babel-jest",
-      ".(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
+      "\\.js$": "babel-jest",
+      "\\.(ts|tsx)$": "ts-jest"
     }
   },
   "prettier": {
diff --git a/server/sonar-vsts/scripts/test.js b/server/sonar-vsts/scripts/test.js
deleted file mode 100644 (file)
index 77a6010..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2018 SonarSource SA
- * mailto:info AT sonarsource DOT com
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- */
-process.env.NODE_ENV = 'test';
-process.env.PUBLIC_URL = '';
-
-const jest = require('jest');
-
-const argv = process.argv.slice(2);
-
-// Watch unless on CI
-if (!process.env.CI) {
-  argv.push('--watch');
-} else {
-  argv.push('--ci');
-}
-
-jest.run(argv);