UNPKG

@dhlab/e2e-autogen

Version:

Google 스프레드시트 기반 시나리오를 Playwright 테스트 스텁 코드로 자동 생성하고, 테스트 실행 결과를 다시 시트에 업데이트하는 CLI 도구

14 lines (13 loc) 433 B
#!/usr/bin/env node Object.defineProperty(exports, "__esModule", { value: true }); const config_1 = require("../config"); const cli_application_1 = require("./cli-application"); const main = async () => { const args = process.argv.slice(2); const config = await (0, config_1.loadUserConfig)(); const app = new cli_application_1.CliApplication(args, config); app.run(); }; if (require.main === module) { main(); }