Skip to content

Commit

Permalink
chore: update checkmark character (#1490)
Browse files Browse the repository at this point in the history
Passing tests were using the square root character `√` (`\u221A`),
replaced this with the same glyph used in Vite's output: `✓` (`\u2713`).
  • Loading branch information
stormwarning committed Jun 15, 2022
1 parent 2fcce6d commit c8d61ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/api/index.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/vitest/src/utils/figures.ts
Expand Up @@ -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 = '▶'

0 comments on commit c8d61ed

Please sign in to comment.