UNPKG

@dhlab/e2e-autogen

Version:

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

17 lines (15 loc) 431 B
#!/usr/bin/env node 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); const cli_application_1 = require("./cli-application"); const main = async () => { const args = process.argv.slice(2); const cli = new cli_application_1.CliApplication(); await cli.run(args); }; if (require.main === module) { main().catch((error) => { console.error(error); process.exit(1); }); }