6 lines
314 B
JavaScript
6 lines
314 B
JavaScript
|
|
const { execSync } = require('child_process');
|
||
|
|
const result = execSync(
|
||
|
|
'./node_modules/.bin/playwright test ".agent-pipeline/browser-tests/e2e-test.spec.ts" --config=".agent-pipeline/browser-tests/playwright.config.ts" --reporter=line',
|
||
|
|
{ cwd: '/Users/gbpark/ERP-node', stdio: 'inherit', timeout: 120000 }
|
||
|
|
);
|