mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-15 11:40:07 -06:00
28 lines
952 B
JSON
28 lines
952 B
JSON
{
|
|
"name": "example-react-scripts",
|
|
"description": "Component testing with specs inside the src folder",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "../../node_modules/.bin/react-scripts start",
|
|
"test": "../../node_modules/.bin/cypress-expect run --min-passing 13",
|
|
"cy:open": "../../node_modules/.bin/cypress open",
|
|
"check-coverage": "../../node_modules/.bin/check-coverage src/App.js src/calc.js src/Child.js src/services.js src/RemotePizza.js cypress/fixtures/add.js",
|
|
"only-covered": "../../node_modules/.bin/only-covered src/App.js src/calc.js src/Child.js src/services.js src/RemotePizza.js cypress/fixtures/add.js"
|
|
},
|
|
"devDependencies": {
|
|
"cypress-react-unit-test": "file:../.."
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|