Skip to content

Commit f92239d

Browse files
Apply suggestions from code review
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 2ca1f13 commit f92239d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/schema/tests/generator/prisma-generator.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('Prisma generator test', () => {
1818

1919
beforeAll(async () => {
2020
packageJsonContents = preparePackageJson({
21-
"prisma": "^5.0.0"
21+
'prisma': '^5.0.0'
2222
});
2323
})
2424

script/test-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function execCmdSync(cmd: string, path: string) {
4343
}
4444
}
4545

46-
export function initProjectDir(projectDir: string, packageJsonContents: string, offline: boolean = true) {
46+
export function initProjectDir(projectDir: string, packageJsonContents: string, offline = true) {
4747
if (!fs.existsSync(projectDir)) {
4848
fs.mkdirSync(projectDir, { recursive: true });
4949
}

0 commit comments

Comments
 (0)