Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.

Commit 48122d1

Browse files
committed
Fix jest sample on Windows
1 parent fd17b8c commit 48122d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gradle/js-tests/jest/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ task installJest(type: NpmTask) {
4444

4545
task runJest(type: NodeTask, dependsOn: [compileTestKotlin2Js, populateNodeModules, installJest]) {
4646
script = file('node_modules/jest/bin/jest.js')
47-
args = [compileTestKotlin2Js.outputFile]
47+
args = [projectDir.toURI().relativize(compileTestKotlin2Js.outputFile.toURI())]
4848
}
4949

5050
test.dependsOn runJest

0 commit comments

Comments
 (0)