/// // @jsx: preserve // @filename: a.tsx ////function Foo() { //// return ( ////
//// /*a*//*b*/ ////
//// ); ////} goTo.file("a.tsx"); goTo.select("a", "b"); edit.applyRefactor({ refactorName: "Extract Symbol", actionName: "constant_scope_1", actionDescription: "Extract to constant in global scope", newContent: `const /*RENAME*/newLocal = ; function Foo() { return (
{newLocal}
); }` });