Skip to content

Commit fa8de2e

Browse files
committed
Fix jsdom and jsdom-global version.
Apparently, the latest release contains a syntax error that prevents coroutines successful build.
1 parent 99b78e4 commit fa8de2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: gradle/test-mocha-js.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ task testMochaChrome(type: NodeTask, dependsOn: prepareMochaChrome) {
7676
task installDependenciesMochaJsdom(type: NpmTask, dependsOn: [npmInstall]) {
7777
args = ['install',
7878
"mocha@$mocha_version",
79-
'jsdom',
80-
'jsdom-global',
79+
'jsdom@15.2.1',
80+
'jsdom-global@3.0.2',
8181
"source-map-support@$source_map_support_version",
8282
'--no-save']
8383
if (project.hasProperty("teamcity")) args += ["mocha-teamcity-reporter@$mocha_teamcity_reporter_version"]

0 commit comments

Comments
 (0)