-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
fix: show correct url in output status #3013
Conversation
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.
Needs update in snapshots as well.
255a8fd
to
0cc6b88
Compare
Codecov Report
@@ Coverage Diff @@
## master #3013 +/- ##
==========================================
- Coverage 92.40% 92.32% -0.08%
==========================================
Files 37 37
Lines 1264 1264
Branches 328 328
==========================================
- Hits 1168 1167 -1
- Misses 91 92 +1
Partials 5 5
Continue to review full report at Codecov.
|
Please fix lint problem |
I shouldn't be able to commit if there is a lint issue until I bypass with |
I will fix ci tomorrow. |
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.
Can you test locally? Using a lot of CI reduce available machines for other projects
Sorry about that, sometimes it passes locally but fails on CI. I will keep this in my mind and will use my fork's CI in the future in such a case. This one should be good now. |
Thanks |
// skip if webpack-dev-server is not linked | ||
let runCLITest = describe; | ||
let basePath; | ||
|
||
try { | ||
basePath = path.join(require.resolve('webpack-dev-server'), '..', '..'); | ||
} catch { | ||
runCLITest = describe.skip; | ||
} |
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.
This'd make tests fail where webpack-dev-server
is not npm link
ed.
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.
We link it on CI before running tests.
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.
But for developers testing locally, it may be a hurdle.
For Bugs and Features; did you add new tests?
Yes
Motivation / Use-Case
#2992 (comment)
Breaking Changes
None.
Additional Info
No