diff --git a/packages/cursorless-vscode-e2e/src/suite/getResultStateForComparison.ts b/packages/cursorless-vscode-e2e/src/suite/getResultStateForComparison.ts index a39f824a4e..961ce9fad8 100644 --- a/packages/cursorless-vscode-e2e/src/suite/getResultStateForComparison.ts +++ b/packages/cursorless-vscode-e2e/src/suite/getResultStateForComparison.ts @@ -1,19 +1,28 @@ -import { ExcludableSnapshotField, ReadOnlyHatMap, SpyIDE, TestCaseSnapshot, extractTargetedMarks, marksToPlainObject, storedTargetKeys } from "@cursorless/common"; +import { + ExcludableSnapshotField, + ReadOnlyHatMap, + SpyIDE, + TestCaseSnapshot, + extractTargetedMarks, + marksToPlainObject, + storedTargetKeys, +} from "@cursorless/common"; import { TestHelpers } from "@cursorless/vscode-common"; export async function getResultStateForComparison( finalState: TestCaseSnapshot | undefined, readableHatMap: ReadOnlyHatMap, spyIde: SpyIDE, - takeSnapshot: TestHelpers["takeSnapshot"] + takeSnapshot: TestHelpers["takeSnapshot"], ) { const excludeFields: ExcludableSnapshotField[] = []; - const marks = finalState?.marks == null - ? undefined - : marksToPlainObject( - extractTargetedMarks(Object.keys(finalState.marks), readableHatMap) - ); + const marks = + finalState?.marks == null + ? undefined + : marksToPlainObject( + extractTargetedMarks(Object.keys(finalState.marks), readableHatMap), + ); if (finalState?.clipboard == null) { excludeFields.push("clipboard"); @@ -35,7 +44,7 @@ export async function getResultStateForComparison( spyIde, marks, // FIXME: Stop overriding the clipboard once we have #559 - true + true, ); return resultState; diff --git a/packages/cursorless-vscode-tutorial-webview/src/TutorialStep.tsx b/packages/cursorless-vscode-tutorial-webview/src/TutorialStep.tsx index 95905e6624..0f036e6e7f 100644 --- a/packages/cursorless-vscode-tutorial-webview/src/TutorialStep.tsx +++ b/packages/cursorless-vscode-tutorial-webview/src/TutorialStep.tsx @@ -1,6 +1,4 @@ -import { - ActiveTutorialNoErrorsState, -} from "@cursorless/common"; +import { ActiveTutorialNoErrorsState } from "@cursorless/common"; import { type FunctionComponent } from "react"; import { Command } from "./Command";