more wip
This commit is contained in:
@@ -3,10 +3,7 @@
|
||||
const { spawn } = require('child_process');
|
||||
const path = require('path');
|
||||
|
||||
const args = [
|
||||
'--config', 'jest.e2e.config.js',
|
||||
...process.argv.slice(2)
|
||||
];
|
||||
const args = ['--config', 'jest.e2e.config.js', ...process.argv.slice(2)];
|
||||
|
||||
const jest = spawn('jest', args, {
|
||||
cwd: path.join(__dirname, '../..'),
|
||||
@@ -16,4 +13,4 @@ const jest = spawn('jest', args, {
|
||||
|
||||
jest.on('exit', (code) => {
|
||||
process.exit(code);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user