summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/wasi/test-wasi-options-validation.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/wasi/test-wasi-options-validation.js b/test/wasi/test-wasi-options-validation.js
index 34ab7e078f..f8ec2604d5 100644
--- a/test/wasi/test-wasi-options-validation.js
+++ b/test/wasi/test-wasi-options-validation.js
@@ -11,12 +11,12 @@ new WASI({});
// If args is not an Array and not undefined, it should throw.
assert.throws(() => { new WASI({ args: 'fhqwhgads' }); },
- { code: 'ERR_INVALID_ARG_TYPE' });
+ { code: 'ERR_INVALID_ARG_TYPE', message: /\bargs\b/ });
// If env is not an Object and not undefined, it should throw.
assert.throws(() => { new WASI({ env: 'fhqwhgads' }); },
- { code: 'ERR_INVALID_ARG_TYPE' });
+ { code: 'ERR_INVALID_ARG_TYPE', message: /\benv\b/ });
// If preopens is not an Object and not undefined, it should throw.
assert.throws(() => { new WASI({ preopens: 'fhqwhgads' }); },
- { code: 'ERR_INVALID_ARG_TYPE' });
+ { code: 'ERR_INVALID_ARG_TYPE', message: /\bpreopens\b/ });