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')) {
`npx playwright codegen ${APP_BASE_URL} --save-storage=playwright/.auth/codegen.auth.json`,
} else {
console.error(err);
}
};
const run = async () => {
const { kill, awaitForNocoBase } = await runNocoBase();
await awaitForNocoBase();
console.log('Starting codegen...');
runCodegenSync();
kill?.('SIGKILL');
run();