22 lines
640 B
JSON
22 lines
640 B
JSON
{
|
|
"name": "e2e",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"devDependencies": {
|
|
"cypress": "^9.2.1"
|
|
},
|
|
"scripts": {
|
|
"open": "./node_modules/.bin/cypress open",
|
|
"all-chrome": "./node_modules/.bin/cypress run --browser chrome",
|
|
"all-ff": "./node_modules/.bin/cypress run --browser firefox",
|
|
"smoke-ff": "./node_modules/.bin/cypress run --browser firefox --spec ./tests/regression/1-smoke/*.js",
|
|
"smoke-chrome": "./node_modules/.bin/cypress run --browser chrome --spec ./tests/regression/1-smoke/*.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC"
|
|
}
|