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

Adjust test result indicator for colorblind people #512

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Bug-fixes within the same version aren't needed
* Improve global and local detection for Jest executable on `win32` platform - [@rfgamaral](https://github.com/rfgamaral)
* Set `"extensionKind": "workspace"` in `package.json` to support remote developement - [@rfgamaral](https://github.com/rfgamaral)
* Fix remove ANSI characters from test messages - [@jmarceli](https://github.com/jmarceli)
* Adjust test result indicators for colorblind people - [@jmarceli](https://github.com/jmarceli)
* Use short message instead of terse message in test diagnostic tooltip and tab - [@jmarceli](https://github.com/jmarceli)

-->
Expand Down
8 changes: 4 additions & 4 deletions src/decorations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ export function failingItName() {
light: {
before: {
color: '#FF564B',
contentText: ' ',
contentText: ' ',
},
},
dark: {
before: {
color: '#AD322D',
contentText: ' ',
contentText: ' ',
},
},
rangeBehavior: DecorationRangeBehavior.ClosedClosed,
Expand Down Expand Up @@ -47,13 +47,13 @@ export function passingItName() {
light: {
before: {
color: '#3BB26B',
contentText: ' ',
contentText: ' ',
},
},
dark: {
before: {
color: '#2F8F51',
contentText: ' ',
contentText: ' ',
},
},
rangeBehavior: DecorationRangeBehavior.ClosedClosed,
Expand Down