Skip to content

Commit 129f690

Browse files
Update utils.unit.test.ts
Co-authored-by: Matěj Chalk <[email protected]>
1 parent f0125ff commit 129f690

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import {
99
} from './utils.js';
1010

1111
describe('parsePrintConfigExecutorOptions', () => {
12-
it('should provide NO default projectPrefix', () => {
12+
it('should provide NO default output path', () => {
1313
expect(parsePrintConfigExecutorOptions({})).toStrictEqual(
1414
expect.not.objectContaining({ output: expect.anything() }),
1515
);
1616
});
1717

18-
it('should process given projectPrefix', () => {
18+
it('should process given output path', () => {
1919
expect(
2020
parsePrintConfigExecutorOptions({ output: 'code-pushup.config.json' }),
2121
).toStrictEqual(

0 commit comments

Comments
 (0)