1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #!/usr/bin/env node
- 'use strict'
- const { execFile, spawn } = require('child_process')
- const vnu = require('vnu-jar')
- execFile('java', ['-version'], (error, stdout, stderr) => {
- if (error) {
- console.error('Skipping vnu-jar test; Java is missing.')
- return
- }
- const is32bitJava = !/64-Bit/.test(stderr)
-
-
- const ignores = [
-
-
- 'Attribute “autocomplete” is only allowed when the input type is.*',
- 'Attribute “autocomplete” not allowed on element “button” at this point.'
- ].join('|')
- const args = [
- '-jar',
- `"${vnu}"`,
- '--asciiquotes',
- '--skip-non-html',
- '--Werror',
- `--filterpattern "${ignores}"`,
- '_site/',
- 'js/tests/'
- ]
-
- if (is32bitJava) {
- args.splice(0, 0, '-Xss512k')
- }
- return spawn('java', args, {
- shell: true,
- stdio: 'inherit'
- })
- .on('exit', process.exit)
- })
|