mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:56:29 +00:00
887ddf0ed1
* test: optimize command * chore: add force options * chore: kill child process
33 lines
810 B
TypeScript
33 lines
810 B
TypeScript
import { execSync } from 'node:child_process';
|
|
import { APP_BASE_URL, commonConfig, runNocoBase } from './utils';
|
|
|
|
const runCodegenSync = () => {
|
|
try {
|
|
execSync(
|
|
`npx playwright codegen --load-storage=playwright/.auth/codegen.auth.json ${APP_BASE_URL} --save-storage=playwright/.auth/codegen.auth.json`,
|
|
commonConfig,
|
|
);
|
|
} catch (err) {
|
|
if (err.message.includes('auth.json')) {
|
|
execSync(
|
|
`npx playwright codegen ${APP_BASE_URL} --save-storage=playwright/.auth/codegen.auth.json`,
|
|
commonConfig,
|
|
);
|
|
} else {
|
|
console.error(err);
|
|
}
|
|
}
|
|
};
|
|
|
|
const run = async () => {
|
|
const { kill, awaitForNocoBase } = await runNocoBase();
|
|
|
|
await awaitForNocoBase();
|
|
|
|
console.log('Starting codegen...');
|
|
runCodegenSync();
|
|
kill?.('SIGKILL');
|
|
};
|
|
|
|
run();
|