We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0125ff commit 129f690Copy full SHA for 129f690
packages/nx-plugin/src/executors/cli/utils.unit.test.ts
@@ -9,13 +9,13 @@ import {
9
} from './utils.js';
10
11
describe('parsePrintConfigExecutorOptions', () => {
12
- it('should provide NO default projectPrefix', () => {
+ it('should provide NO default output path', () => {
13
expect(parsePrintConfigExecutorOptions({})).toStrictEqual(
14
expect.not.objectContaining({ output: expect.anything() }),
15
);
16
});
17
18
- it('should process given projectPrefix', () => {
+ it('should process given output path', () => {
19
expect(
20
parsePrintConfigExecutorOptions({ output: 'code-pushup.config.json' }),
21
).toStrictEqual(
0 commit comments