diff --git a/pkgs/cli/project.json b/pkgs/cli/project.json index 94ee20932..cc349c873 100644 --- a/pkgs/cli/project.json +++ b/pkgs/cli/project.json @@ -30,12 +30,12 @@ "test": { "executor": "nx:noop", "inputs": ["default", "^production"], - "dependsOn": ["test:vitest"], + "dependsOn": ["test:unit"], "options": { "parallel": false } }, - "test:vitest": { + "test:unit": { "executor": "nx:run-commands", "inputs": ["default", "^production"], "options": { diff --git a/pkgs/core/project.json b/pkgs/core/project.json index acd84ee8c..22b16e709 100644 --- a/pkgs/core/project.json +++ b/pkgs/core/project.json @@ -208,7 +208,7 @@ "test": { "executor": "nx:noop", "inputs": ["default", "^production", "databaseTypes"], - "dependsOn": ["test:vitest", "test:types"] + "dependsOn": ["test:unit", "test:types"] }, "pgtap": { "executor": "nx:noop", @@ -229,7 +229,7 @@ "parallel": false } }, - "test:vitest": { + "test:unit": { "executor": "@nx/vite:test", "dependsOn": ["build", "verify-gen-types"], "inputs": ["default", "databaseTypes", "^production"], diff --git a/pkgs/dsl/project.json b/pkgs/dsl/project.json index 742aff06f..80fe91298 100644 --- a/pkgs/dsl/project.json +++ b/pkgs/dsl/project.json @@ -26,7 +26,7 @@ "parallel": false } }, - "test:vitest": { + "test:unit": { "executor": "@nx/vite:test", "dependsOn": ["build"], "inputs": ["default", "^production"], @@ -70,11 +70,11 @@ "test": { "executor": "nx:noop", "inputs": ["default", "^production"], - "dependsOn": ["test:vitest", "test:types"] + "dependsOn": ["test:unit", "test:types"] }, "prepush": { "executor": "nx:noop", - "dependsOn": ["lint", "build", "test:vitest", "test:types:vitest"] + "dependsOn": ["lint", "build", "test:unit", "test:types:vitest"] } } }