This codemod migrates Env.execute
callbacks to await.
Example
Before
try {env.execute(null, function () {console.log("Test suite finished.");});} catch (e) {console.log("Failed to start the test suite.");}
After
try {await env.execute();} catch (e) {console.log("Failed to start the test suite.");}
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community