Newer
Older
pixi.js / test / index.js
@Matt Karl Matt Karl on 9 Jan 2019 369 bytes Temporary skip problematic tests (#5343)
const path = require('path');
const { execFileSync } = require('child_process');

// Synchronously generate the list of testable packages
const script = path.join(__dirname, './packages.js');
const packages = execFileSync('node', [script]).toString();

// Require the test
// eslint-disable-next-line global-require
JSON.parse(packages).forEach((pkg) => require(pkg));