Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/commands.ts')
| -rw-r--r-- | editors/code/src/commands.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts index a4b53730ad..73e39c900e 100644 --- a/editors/code/src/commands.ts +++ b/editors/code/src/commands.ts @@ -1145,7 +1145,7 @@ function isUpdatingTest(runnable: ra.Runnable): boolean { } const env = runnable.args.environment; - return env ? ['UPDATE_EXPECT', 'INSTA_UPDATE', 'SNAPSHOTS'].some(key => key in env) : false; + return env ? ["UPDATE_EXPECT", "INSTA_UPDATE", "SNAPSHOTS"].some((key) => key in env) : false; } export function runSingle(ctx: CtxInit): Cmd { |