Skip to content

Commit

Permalink
fix(nx-plugin): fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Jul 12, 2024
1 parent dffbad0 commit d616159
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/nx-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"tslib": "2.6.2",
"nx": "^17.1.3",
"@code-pushup/models": "*",
"@code-pushup/utils": "*",
"zod": "^3.22.4"
},
"type": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/nx-plugin/src/executors/internal/cli.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ describe('objectToCliArgs', () => {
describe('createCliCommand', () => {
it('should create command out of command name and an object for arguments', () => {
const result = createCliCommand('autorun', { verbose: true });
expect(result).toEqual('npx @code-pushup/cli autorun --verbose');
expect(result).toBe('npx @code-pushup/cli autorun --verbose');
});
});

0 comments on commit d616159

Please sign in to comment.