first commit
This commit is contained in:
20
web-app/node_modules/papaparse/tests/test.js
generated
vendored
Normal file
20
web-app/node_modules/papaparse/tests/test.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
var connect = require('connect');
|
||||
var serveStatic = require('serve-static');
|
||||
var open = require('open');
|
||||
var path = require('path');
|
||||
var childProcess = require('child_process');
|
||||
|
||||
var server = connect().use(serveStatic(path.join(__dirname, '/..'))).listen(8071, function() {
|
||||
if (process.argv.indexOf('--mocha-headless-chrome') !== -1) {
|
||||
childProcess.spawn('node_modules/.bin/mocha-headless-chrome', ['-f', 'http://localhost:8071/tests/tests.html'], {
|
||||
stdio: 'inherit'
|
||||
}).on('exit', function(code) {
|
||||
server.close();
|
||||
process.exit(code); // eslint-disable-line no-process-exit
|
||||
});
|
||||
|
||||
} else {
|
||||
open('http://localhost:8071/tests/tests.html');
|
||||
console.log('Serving tests...');
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user