Skip to content

Commit

Permalink
chore(deps): Install nx playwright plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jontze committed Nov 2, 2024
1 parent 6b1d664 commit 1109a6c
Show file tree
Hide file tree
Showing 5 changed files with 631 additions and 21 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"recommendations": [
"nrwl.angular-console",
"esbenp.prettier-vscode",
"firsttris.vscode-jest-runner"
"firsttris.vscode-jest-runner",
"ms-playwright.playwright"
]
}
6 changes: 5 additions & 1 deletion apps/ng-remote-config-example/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": ["../../.eslintrc.json"],
"extends": ["plugin:playwright/recommended", "../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
Expand Down Expand Up @@ -31,6 +31,10 @@
"files": ["*.html"],
"extends": ["plugin:@nx/angular-template"],
"rules": {}
},
{
"files": ["e2e/**/*.{ts,js,tsx,jsx}"],
"rules": {}
}
]
}
10 changes: 9 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,13 @@
"style": "css"
}
},
"useLegacyCache": true
"useLegacyCache": true,
"plugins": [
{
"plugin": "@nx/playwright/plugin",
"options": {
"targetName": "e2e"
}
}
]
}
Loading

0 comments on commit 1109a6c

Please sign in to comment.