Skip to content

Commit

Permalink
fix(core): modify snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKless committed Jul 15, 2024
1 parent c994fba commit 2a768a5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion packages/cypress/src/plugins/plugin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ describe('@nx/cypress/plugin', () => {
"target": "e2e-ci--src/test.cy.ts",
},
],
"executor": "nx:noop",
"executor": "nx:atomizer",
"inputs": [
"default",
"^production",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest/src/plugins/plugin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ describe('@nx/jest/plugin', () => {
"dependsOn": [
"test-ci--src/unit.spec.ts",
],
"executor": "nx:noop",
"executor": "nx:atomizer",
"inputs": [
"default",
"^production",
Expand Down
2 changes: 1 addition & 1 deletion packages/nx/executors.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
"description": "An executor that is used as the root task for atomized tasks. Ensures it's being run in distribution and otherwise does nothing."
}
}
}
}
18 changes: 9 additions & 9 deletions packages/nx/src/executors/atomizer/schema.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"version": 2,
"title": "Atomizer",
"description": "An executor that is used as the root task for atomized tasks. Ensures it's being run in distribution and otherwise does nothing.",
"type": "object",
"cli": "nx",
"outputCapture": "pipe",
"properties": {},
"additionalProperties": true
}
"version": 2,
"title": "Atomizer",
"description": "An executor that is used as the root task for atomized tasks. Ensures it's being run in distribution and otherwise does nothing.",
"type": "object",
"cli": "nx",
"outputCapture": "pipe",
"properties": {},
"additionalProperties": true
}
6 changes: 3 additions & 3 deletions packages/playwright/src/plugins/plugin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ describe('@nx/playwright/plugin', () => {
"e2e-ci": {
"cache": true,
"dependsOn": [],
"executor": "nx:noop",
"executor": "nx:atomizer",
"inputs": [
"default",
"^production",
Expand Down Expand Up @@ -204,7 +204,7 @@ describe('@nx/playwright/plugin', () => {
"e2e-ci": {
"cache": true,
"dependsOn": [],
"executor": "nx:noop",
"executor": "nx:atomizer",
"inputs": [
"default",
"^production",
Expand Down Expand Up @@ -295,7 +295,7 @@ describe('@nx/playwright/plugin', () => {
"target": "e2e-ci--tests/run-me.spec.ts",
},
],
"executor": "nx:noop",
"executor": "nx:atomizer",
"inputs": [
"default",
"^production",
Expand Down

0 comments on commit 2a768a5

Please sign in to comment.