1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-09-02 18:32:36 +02:00

add script for running tests in interactive mode

This commit is contained in:
Morris Brodersen
2023-11-24 17:40:25 +01:00
parent 9e7915c296
commit 1e3fb5d9d3
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
/dist /dist
/node_modules /node_modules
/test-results

View File

@@ -27,7 +27,8 @@
"format-check": "prettier --check .", "format-check": "prettier --check .",
"lint": "eslint public", "lint": "eslint public",
"lint-styles": "stylelint public/styles/*", "lint-styles": "stylelint public/styles/*",
"test": "playwright test" "test": "playwright test",
"test-ui": "playwright test --ui"
}, },
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.33.0", "@playwright/test": "^1.33.0",