Files
nebula.js/scripts/run-rendering-tests.js
Johan Lahti e2208c6081 chore: expand rendering test capabilities (#1011)
* test: implement rendering tests with listbox

* test: keep headless

* chore: revert changing puppeteer version

* fix: clean up
2022-11-25 12:57:47 +01:00

5 lines
174 B
JavaScript

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