diff --git a/packages/vitest/src/integrations/snapshot/port/utils.ts b/packages/vitest/src/integrations/snapshot/port/utils.ts index eb1b2ad2603e..b8359e79f7c0 100644 --- a/packages/vitest/src/integrations/snapshot/port/utils.ts +++ b/packages/vitest/src/integrations/snapshot/port/utils.ts @@ -20,7 +20,7 @@ import { getSerializers } from './plugins' export const SNAPSHOT_VERSION = '1' -const writeSnapshotVersion = () => `// Vitest Snapshot v${SNAPSHOT_VERSION}` +const writeSnapshotVersion = () => `// Vitest Snapshot v${SNAPSHOT_VERSION}, https://vitest.dev/guide/snapshot.html` export const testNameToKey = (testName: string, count: number): string => `${testName} ${count}`