-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
feat: make browsertest failures standout #4148
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looking at the styles:
A few things that make me not a fan yet:
I'm not sure what would be the "right" approach. A few things come to mind, but I haven't thought very deeply:
(I'm not convinced any of that is better, just ideating) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -263,8 +263,18 @@ body { | |
right: 10px; | ||
font-size: 12px; | ||
margin: 0; | ||
color: #888; | ||
color: #1d1e1f; | ||
z-index: 1; | ||
background-color: #00e600; | ||
border: solid #00e600; | ||
border-radius: 10px; | ||
} | ||
|
||
#mocha-stats.fail { | ||
@extend #mocha-stats; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [Style] I don't think this Thinking in terms of semantic class names, I think it'd make sense to have a class like Answering #4148 (comment): no, CSS can overcome these issues. 🙂 |
||
border: solid #c00; | ||
background-color: #c00; | ||
border-radius: 10px; | ||
} | ||
|
||
#mocha-stats .progress { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,6 +144,7 @@ | |
"rollup-plugin-node-globals": "^1.4.0", | ||
"rollup-plugin-node-polyfills": "^0.2.1", | ||
"rollup-plugin-visualizer": "^4.1.0", | ||
"sass": "^1.39.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [Structure] There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed in #5218 ;) |
||
"sinon": "^9.0.3", | ||
"strip-ansi": "^6.0.0", | ||
"svgo": "^1.3.2", | ||
|
@@ -167,7 +168,7 @@ | |
"assets/growl/*.png", | ||
"lib/**/*.{js,html,json}", | ||
"index.js", | ||
"mocha.css", | ||
"mocha.sass", | ||
"mocha.js", | ||
"mocha.js.map", | ||
"mocha-es2018.js", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Style] Nit: unnecessary change?