0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 22:32:41 +00:00

Merge pull request #2730 from naturalcrit/RunJestTestsSequentially

Run Tests sequentially
This commit is contained in:
Trevor Buckner
2023-03-14 11:18:10 -04:00
committed by GitHub
2 changed files with 7 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ jobs:
- image: cimg/node:16.11.0 - image: cimg/node:16.11.0
working_directory: ~/homebrewery working_directory: ~/homebrewery
parallelism: 4 parallelism: 1
steps: steps:
- attach_workspace: - attach_workspace:
@@ -61,15 +61,15 @@ jobs:
- run: - run:
name: Test - Basic name: Test - Basic
command: npm run test:basic command: npm run test:basic
- run:
name: Test - Coverage
command: npm run test:coverage
- run: - run:
name: Test - Mustache Spans name: Test - Mustache Spans
command: npm run test:mustache-span command: npm run test:mustache-span
- run: - run:
name: Test - Routes name: Test - Routes
command: npm run test:route command: npm run test:route
- run:
name: Test - Coverage
command: npm run test:coverage
workflows: workflows:
build_and_test: build_and_test:

View File

@@ -19,9 +19,9 @@
"lint:dry": "eslint **/*.{js,jsx}", "lint:dry": "eslint **/*.{js,jsx}",
"circleci": "npm test && eslint **/*.{js,jsx} --max-warnings=0", "circleci": "npm test && eslint **/*.{js,jsx} --max-warnings=0",
"verify": "npm run lint && npm test", "verify": "npm run lint && npm test",
"test": "jest", "test": "jest --runInBand",
"test:api-unit": "jest server/*.spec.js --verbose", "test:api-unit": "jest server/*.spec.js --verbose",
"test:coverage": "jest --coverage --silent", "test:coverage": "jest --coverage --silent --runInBand",
"test:dev": "jest --verbose --watch", "test:dev": "jest --verbose --watch",
"test:basic": "jest tests/markdown/basic.test.js --verbose", "test:basic": "jest tests/markdown/basic.test.js --verbose",
"test:mustache-span": "jest tests/markdown/mustache-span.test.js --verbose", "test:mustache-span": "jest tests/markdown/mustache-span.test.js --verbose",
@@ -37,7 +37,7 @@
"build/*" "build/*"
], ],
"jest": { "jest": {
"testTimeout": 15000, "testTimeout": 30000,
"modulePaths": [ "modulePaths": [
"node_modules", "node_modules",
"shared", "shared",