From 09e12aa593fc1e2969c73ed27ad012dbd09af670 Mon Sep 17 00:00:00 2001 From: freewind Date: Sat, 31 Mar 2018 23:13:57 +0800 Subject: [PATCH] fix mocha installation error --- gradle/js-tests/mocha/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/js-tests/mocha/build.gradle b/gradle/js-tests/mocha/build.gradle index d7f8da32c1..9e17262851 100644 --- a/gradle/js-tests/mocha/build.gradle +++ b/gradle/js-tests/mocha/build.gradle @@ -43,7 +43,7 @@ task installMocha(type: NpmTask) { } task runMocha(type: NodeTask, dependsOn: [compileTestKotlin2Js, populateNodeModules, installMocha]) { - script = file('node_modules/mocha/bin/mocha') + script = file('./node_modules/mocha/bin/mocha') args = [compileTestKotlin2Js.outputFile] }