use node version 10.8.0 for experimental features

This commit is contained in:
Volker 2018-08-03 22:15:12 +02:00
parent a27733234f
commit 4aedc02d5e
2 changed files with 3 additions and 3 deletions

View File

@ -59,9 +59,9 @@ artifacts {
} }
node { node {
version = '8.10.0' version = '8.11.2'
// version = '+' // version = '+'
// download = true download = true
} }
task nodeVersion(type: NodeTask) { task nodeVersion(type: NodeTask) {

View File

@ -60,7 +60,7 @@ public class RuntimeErrors {
if( newlineIdx > 0 ) { if( newlineIdx > 0 ) {
error = error.substring( 0, newlineIdx ); error = error.substring( 0, newlineIdx );
} }
String expected = script == ScriptEngine.SpiderMonkey ? "TypeError: cannot pass i64 to or from JS" : "TypeError: invalid type"; String expected = script == ScriptEngine.SpiderMonkey ? "TypeError: cannot pass i64 to or from JS" : "TypeError: wasm function signature contains illegal type";
assertEquals( expected, error ); assertEquals( expected, error );
} }