From 052a62685f6cca75ac9aa3ea45cec02aaa5510dd Mon Sep 17 00:00:00 2001 From: Isaac Mann Date: Mon, 4 Nov 2024 14:00:01 -0500 Subject: [PATCH] chore(nx-dev): disable nx-dev-e2e (#28789) Disable the e2e tests for nx-dev --- nx-dev/nx-dev-e2e/project.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/nx-dev/nx-dev-e2e/project.json b/nx-dev/nx-dev-e2e/project.json index b8ce35aa72..573abb4033 100644 --- a/nx-dev/nx-dev-e2e/project.json +++ b/nx-dev/nx-dev-e2e/project.json @@ -3,7 +3,16 @@ "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "nx-dev/nx-dev-e2e/src", "projectType": "application", - "targets": {}, + "targets": { + "pw-e2e": { + "command": "echo 'pw-e2e disabled'", + "cache": true + }, + "e2e-ci": { + "command": "echo 'e2e-ci disabled'", + "cache": true + } + }, "tags": ["scope:nx-dev", "type:e2e"], "implicitDependencies": ["nx-dev"] }