mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 17:58:43 -05:00
* test: implement rendering tests with listbox * test: keep headless * chore: revert changing puppeteer version * fix: clean up
5 lines
174 B
JavaScript
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' });
|