From 205f26a5373dd41719fd1ca5854851e49a8a79c7 Mon Sep 17 00:00:00 2001 From: Keyhan Vakil Date: Sat, 24 Sep 2022 06:28:35 +0000 Subject: [PATCH] test: skip flaky JSArrayBuffer test This test failed a couple of times in #415, #417 and #418, so let's skip it for now. --- test/plugin/inspect-test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/plugin/inspect-test.js b/test/plugin/inspect-test.js index 8e93cf89..4510c948 100644 --- a/test/plugin/inspect-test.js +++ b/test/plugin/inspect-test.js @@ -239,6 +239,10 @@ const hashMapTests = { re: new RegExp('.array-buffer=(0x[0-9a-f]+):' + ''), desc: '.array-buffer JSArrayBuffer property', + optional: { + re: new RegExp(''), + reason: 'flakes occasionally on Node.js v18' + }, validators: [(t, sess, addresses, name, cb) => { const address = addresses[name]; sess.send(`v8 inspect ${address}`);