disable typedarrays-test.js
This commit is contained in:
parent
606fd87d1e
commit
01ca00ec82
1 changed files with 4 additions and 1 deletions
|
@ -47,7 +47,10 @@ async function main () {
|
||||||
|
|
||||||
const onlyTests = args.only && args.only.split(',');
|
const onlyTests = args.only && args.only.split(',');
|
||||||
|
|
||||||
const DISABLED_TESTS = ['nannew-test.js'];
|
const DISABLED_TESTS = [
|
||||||
|
'nannew-test.js',
|
||||||
|
'typedarrays-test.js' // TODO(nornagon): https://github.com/electron/electron/issues/28414
|
||||||
|
];
|
||||||
const testsToRun = fs.readdirSync(path.resolve(NAN_DIR, 'test', 'js'))
|
const testsToRun = fs.readdirSync(path.resolve(NAN_DIR, 'test', 'js'))
|
||||||
.filter(test => !DISABLED_TESTS.includes(test))
|
.filter(test => !DISABLED_TESTS.includes(test))
|
||||||
.filter(test => {
|
.filter(test => {
|
||||||
|
|
Loading…
Reference in a new issue