Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dx: update checkmark character #1490

Merged
merged 1 commit into from Jun 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 = '▶'