Skip to content

Instantly share code, notes, and snippets.

@jscodelover
Created April 8, 2021 10:22
Show Gist options
  • Save jscodelover/953595b03b216e74f2a4dbc0123d53d6 to your computer and use it in GitHub Desktop.
Save jscodelover/953595b03b216e74f2a4dbc0123d53d6 to your computer and use it in GitHub Desktop.
// package.json
{
"scripts": {
// standalone Jest
"test": "jest --maxWorkers=50%",
"test:watch": "jest --watch --maxWorkers=25%",
"test:ci": "jest --runInBand",
// or with Create React App
"test": "react-scripts test --watchAll=false --maxWorkers=50%",
"test:watch": "react-scripts test --maxWorkers=25%",
"test:ci": "react-scripts test --watchAll=false --runInBand"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment