Skip to content

Commit f3a9231

Browse files
author
John Doe
committed
refactor: wip
1 parent be53602 commit f3a9231

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

e2e/nx-plugin-e2e/tests/plugin-create-nodes.e2e.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ describe('nx-plugin', () => {
173173
});
174174

175175
const cleanStdout = removeColorCodes(stdout);
176+
throw new Error(cleanStdout);
176177
// Nx command
177178
expect(cleanStdout).toContain('nx run my-lib:code-pushup --dryRun');
178179
// Run CLI executor

packages/nx-plugin/src/executors/cli/executor.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ describe('runAutorunExecutor', () => {
118118
expect(output.command).not.toContain('--verbose');
119119
expect(logger.warn).toHaveBeenCalledTimes(1);
120120
expect(logger.warn).toHaveBeenCalledWith(
121-
expect.stringContaining('CP_VERBOSE=\"true\"'),
121+
expect.stringContaining('CP_VERBOSE="true"'),
122122
);
123123
});
124124

0 commit comments

Comments
 (0)