Skip to content

Commit

Permalink
skip dynamic-buffers.html because it timesout
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Jul 2, 2024
1 parent 13de4e8 commit 6342652
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/puppeteer.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6342652

Please sign in to comment.