diff --git a/docs/api/index.md b/docs/api/index.md index 46d70edcf815..568c8c3105d3 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -193,9 +193,9 @@ In Jest, `TestFunction` can also be of type `(done: DoneCallback) => void`. If t }) // this will return - // √ add(1, 1) -> 2 - // √ add(1, 2) -> 3 - // √ add(2, 1) -> 3 + // ✓ add(1, 1) -> 2 + // ✓ add(1, 2) -> 3 + // ✓ add(2, 1) -> 3 ``` ## describe diff --git a/packages/vitest/src/utils/figures.ts b/packages/vitest/src/utils/figures.ts index 5fef26dfc488..b5dc259d3bc1 100644 --- a/packages/vitest/src/utils/figures.ts +++ b/packages/vitest/src/utils/figures.ts @@ -4,7 +4,7 @@ export const F_UP = '↑' export const F_DOWN_RIGHT = '↳' export const F_POINTER = '❯' export const F_DOT = '·' -export const F_CHECK = '√' +export const F_CHECK = '✓' export const F_CROSS = '×' export const F_LONG_DASH = '⎯' export const F_RIGHT_TRI = '▶'