Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
"description": "Boilerplate code for running Nightwatch tests in TypeScript",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist logs tests_output",
"clean": "rimraf dist logs tests_output",
"build": "tsc",
"clean:build": "npm run clean && npm run build",
"test": "npm run clean && tsc && nightwatch --env chrome",
"test-browserstack": "npm run clean && tsc && nightwatch --env browserstack.chrome",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
"lint-and-fix": "eslint . --ext .ts --fix",
"rimraf": "./node_modules/rimraf/bin.js"
},
"repository": {
"type": "git",
Expand All @@ -32,7 +33,8 @@
"@typescript-eslint/parser": "^5.14.0",
"chromedriver": "^99.0.0",
"eslint": "^8.10.0",
"geckodriver": "^3.0.1"
"geckodriver": "^3.0.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@types/nightwatch": "^2.0.1",
Expand Down