From 634265283a7bfdef9a00e3b2fd0be36aa255a1e9 Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Tue, 2 Jul 2024 15:56:03 -0700 Subject: [PATCH] skip dynamic-buffers.html because it timesout --- test/puppeteer.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/puppeteer.js b/test/puppeteer.js index d553f5c8..aea33018 100755 --- a/test/puppeteer.js +++ b/test/puppeteer.js @@ -11,9 +11,11 @@ const port = 3000; const exampleInjectJS = fs.readFileSync('test/src/js/example-inject.js', {encoding: 'utf-8'}); +const skipRE = /dynamic-buffers/; + function getExamples(port) { return fs.readdirSync('examples') - .filter(f => f.endsWith('.html')) + .filter(f => f.endsWith('.html') && !skipRE.test(f)) .map(f => ({ url: `http://localhost:${port}/examples/${f}`, js: exampleInjectJS,