Closed
Bug 1405352
Opened 8 years ago
Closed 7 years ago
Migrate browser_webconsole_jsterm.js to the new frontend
Categories
(DevTools :: Console, defect, P1)
DevTools
Console
Tracking
(firefox60 fixed)
RESOLVED
FIXED
Firefox 60
| Tracking | Status | |
|---|---|---|
| firefox60 | --- | fixed |
People
(Reporter: nchevobbe, Assigned: nchevobbe)
References
Details
(Whiteboard: [newconsole-mvp])
Attachments
(1 file)
No description provided.
| Assignee | ||
Updated•8 years ago
|
status-firefox57:
--- → wontfix
Priority: -- → P3
Updated•8 years ago
|
Priority: P3 → P2
Whiteboard: [newconsole-mvp]
| Assignee | ||
Updated•7 years ago
|
Assignee: nobody → nchevobbe
Status: NEW → ASSIGNED
Priority: P2 → P1
| Comment hidden (mozreview-request) |
Comment 2•7 years ago
|
||
| mozreview-review | ||
Comment on attachment 8948982 [details]
Bug 1405352 - Split browser_webconsole_jsterm.js in multiple tests; .
https://reviewboard.mozilla.org/r/216862/#review226476
Very nice clean up!
Just couple of notes.
R+ assuming try is green
Honza
::: devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_error_docs.js:12
(Diff revision 1)
>
> -var jsterm;
> +add_task(async function () {
> + const hud = await openNewTabAndConsole(TEST_URI);
> + const {jsterm} = hud;
>
> -add_task(function* () {
> + // Check that errors with entires in errordocs.js display links next to their messages.
typo: entires -> entries
::: devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_error_docs.js
(Diff revision 1)
> - }, `error links to ${title}`);
> - }
> -
> + const learnMoreLink = node.querySelector(".learn-more-link");
> + ok(learnMoreLink, `There is a [Learn More] link for "${errorMessageName}" error`);
> + is(learnMoreLink.title, title, `The link has the expected "${title}" title`);
> - // Ensure that dom errors, with error numbers outside of the range
> - // of valid js.msg errors, don't cause crashes (bug 1270721).
> - yield jsterm.execute("new Request('',{redirect:'foo'})");
What was this for? Not necessary anymore?
Attachment #8948982 -
Flags: review?(odvarko) → review+
| Assignee | ||
Comment 3•7 years ago
|
||
| mozreview-review-reply | ||
Comment on attachment 8948982 [details]
Bug 1405352 - Split browser_webconsole_jsterm.js in multiple tests; .
https://reviewboard.mozilla.org/r/216862/#review226476
> What was this for? Not necessary anymore?
oops, I think I missed this one
| Comment hidden (mozreview-request) |
Pushed by nchevobbe@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/9b0cf7518d66
Split browser_webconsole_jsterm.js in multiple tests; r=Honza.
Comment 6•7 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
status-firefox60:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 60
Updated•7 years ago
|
Updated•7 years ago
|
Product: Firefox → DevTools
| Assignee | ||
Updated•7 years ago
|
status-firefox57:
wontfix → ---
status-firefox58:
wontfix → ---
You need to log in
before you can comment on or make changes to this bug.
Description
•