Skip to content

Commit 562c83b

Browse files
committed
test: rename nxv-e2e target to e2e-test
1 parent 20b9530 commit 562c83b

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

.github/ISSUE_TEMPLATE/plugin-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ body:
3737
placeholder: |
3838
For example:
3939
- [ ] All packages have a comprehensive documentation in place.
40-
- [ ] All unit, integration and e2e tests for the plugin.
40+
- [ ] All unit, integration and E2E tests for the plugin.
4141
- [ ] Cross references to relevant models or files are added as links.
4242
validations:
4343
required: true

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
- name: Install dependencies
121121
run: npm ci
122122
- name: E2E test affected projects
123-
run: npx nx affected -t nxv-e2e --parallel=1
123+
run: npx nx affected -t e2e-test --parallel=1
124124

125125
build:
126126
runs-on: ubuntu-latest

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ npx nx run-many -t unit-test
4848
npx nx run-many -t int-test
4949

5050
# run E2E tests for CLI
51-
npx nx e2e cli-e2e
51+
npx nx e2e-test cli-e2e
5252

5353
# build CLI along with packages it depends on
5454
npx nx build cli

nx.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@
9191
"options": {
9292
"environments": {
9393
"environmentsDir": "tmp/e2e",
94-
"targetNames": ["e2e"]
94+
"targetNames": ["e2e"],
95+
"inferredTargets": {
96+
"e2e": "e2e-test"
97+
}
9598
},
9699
"packages": {
97100
"filterByTags": ["publishable"]

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@nx/react": "19.8.13",
6565
"@nx/vite": "19.8.13",
6666
"@nx/workspace": "19.8.13",
67-
"@push-based/nx-verdaccio": "0.0.0-alpha.30",
67+
"@push-based/nx-verdaccio": "^0.0.0",
6868
"@swc-node/register": "1.9.2",
6969
"@swc/cli": "0.3.14",
7070
"@swc/core": "1.5.7",

0 commit comments

Comments
 (0)