Skip to content

Commit

Permalink
style: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gperdomor committed Jun 7, 2023
1 parent 9397210 commit 159b42f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/nx-prisma/src/executors/validate/executor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ describe('Validate Executor', () => {
const options: ValidateExecutorSchema = {};
const output = await executor(options, mockContext as ExecutorContext);
expect(
expectCommandToHaveBeenCalled('npx prisma validate', [
'--schema=workspace-root/apps/foo/prisma/schema.prisma',
])
expectCommandToHaveBeenCalled('npx prisma validate', ['--schema=workspace-root/apps/foo/prisma/schema.prisma'])
);
expect(output.success).toBeTruthy();
});
Expand Down

0 comments on commit 159b42f

Please sign in to comment.