chore: expand rendering test capabilities (#1011)

* test: implement rendering tests with listbox

* test: keep headless

* chore: revert changing puppeteer version

* fix: clean up
This commit is contained in:
Johan Lahti
2022-11-25 12:57:47 +01:00
committed by GitHub
parent 7d95042a1d
commit e2208c6081
13 changed files with 537 additions and 11 deletions

View File

@@ -0,0 +1,4 @@
const { execSync } = require('child_process');
const cmd = 'mocha test/rendering/listbox/listbox.spec.js --bail false --timeout 30000';
execSync(cmd, { stdio: 'inherit' });