diff --git a/test/message/assert_throws_stack.js b/test/message/assert_throws_stack.js index 36bc5734cae..e253320fcc7 100644 --- a/test/message/assert_throws_stack.js +++ b/test/message/assert_throws_stack.js @@ -3,4 +3,7 @@ require('../common'); const assert = require('assert').strict; +// Temporarily disabled on chakra. +if (!common.isChakraEngine) { assert.throws(() => { throw new Error('foo'); }, { bar: true }); +} \ No newline at end of file