Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: make jest run faster #162

Merged
merged 2 commits into from Apr 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/stale.yml
@@ -1,7 +1,7 @@
# Configuration for probot-stale - https://github.com/probot/stale

# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 30
daysUntilStale: 21

# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -20,9 +20,9 @@
"sb:bw": "yarn sb:build --watch",
"sb:serve": "http-server ./.sb-static -p 8001",
"start": "yarn sb:start",
"jest": "NODE_ENV=test jest",
"jest": "NODE_ENV=test jest --maxWorkers=25%",
"jest:cov": "yarn jest --coverage",
"jest:ci": "yarn jest:cov --ci --runInBand --reporters='default' --reporters='jest-junit' ",
"jest:ci": "NODE_ENV=test jest --coverage --ci --runInBand --reporters='default' --reporters='jest-junit'",
"flow:mono": "flow-mono create-symlinks ./.flowconfig",
"flow": "yarn flow:mono; flow --show-all-errors",
"flow:copy": "lerna exec --stream -- yarn flow:copy",
Expand Down