This commit is contained in:
Ralph Khreish
2025-07-11 13:29:52 +03:00
parent 74232d0e0d
commit 14cc09d241
27 changed files with 5699 additions and 958 deletions

View File

@@ -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);
});
});