forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
16 lines (16 loc) · 890 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "drag-n-drop",
"version": "1.0.0",
"description": "Performing Drag & Drop by triggering mouse and drag events",
"scripts": {
"cypress:open": "../../node_modules/.bin/cypress open",
"cypress:run": "../../node_modules/.bin/cypress run",
"cypress:run:firefox": "../../node_modules/.bin/cypress run --browser firefox",
"cypress:run:record": "../../node_modules/.bin/cypress run --record",
"dev": "../../node_modules/.bin/start-test http://localhost:7071/puzzle.html cypress:open",
"start": "node server.js --port 7071",
"test:ci": "../../node_modules/.bin/start-test http://localhost:7071/puzzle.html cypress:run",
"test:ci:firefox": "../../node_modules/.bin/start-test http://localhost:7071/puzzle.html cypress:run:firefox",
"test:ci:record": "../../node_modules/.bin/start-test http://localhost:7071/puzzle.html cypress:run:record"
}
}