File tree 3 files changed +6
-9
lines changed
3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,8 @@ export class FindInWorkspace implements SimpleAction {
13
13
async run ( targets : Target [ ] ) : Promise < ActionReturnValue > {
14
14
ensureSingleTarget ( targets ) ;
15
15
16
- const { returnValue, thatTargets } = await this . actions . getText . run (
17
- targets ,
18
- ) ;
16
+ const { returnValue, thatTargets } =
17
+ await this . actions . getText . run ( targets ) ;
19
18
const [ text ] = returnValue as [ string ] ;
20
19
21
20
let query : string ;
Original file line number Diff line number Diff line change @@ -124,9 +124,8 @@ export class TestCaseRecorder {
124
124
const keys = targetedMarks . map ( ( { character, symbolColor } ) =>
125
125
getKey ( symbolColor , character ) ,
126
126
) ;
127
- const readableHatMap = await this . hatTokenMap . getReadableMap (
128
- usePrePhraseSnapshot ,
129
- ) ;
127
+ const readableHatMap =
128
+ await this . hatTokenMap . getReadableMap ( usePrePhraseSnapshot ) ;
130
129
marks = marksToPlainObject ( extractTargetedMarks ( keys , readableHatMap ) ) ;
131
130
} else {
132
131
marks = undefined ;
Original file line number Diff line number Diff line change @@ -105,9 +105,8 @@ async function getScripts(
105
105
if ( isRoot ) {
106
106
// Ensure that `pnpm transform-recorded-tests` mirrors what is in pre-commit
107
107
// config
108
- scripts [ "transform-recorded-tests" ] = await getTransformRecordedTestsScript (
109
- packageDir ,
110
- ) ;
108
+ scripts [ "transform-recorded-tests" ] =
109
+ await getTransformRecordedTestsScript ( packageDir ) ;
111
110
112
111
return scripts ;
113
112
}
You can’t perform that action at this time.
0 commit comments