Closed
Bug 1245784
Opened 9 years ago
Closed 7 years ago
shared-head should call Services.prefs.clearUserPref("devtools.toolbox.selectedTool"); on cleanup
Categories
(DevTools :: Framework, defect)
DevTools
Framework
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: pbro, Unassigned)
Details
While fixing bug 1245420, I ended up having various problems related to tests assuming that a given panel would be selected, and that tests would run in a certain order.
Changing these assumptions make some tests fail, and it's usually hard to investigate.
A lot of tests use helpers from devtools\client\framework\test\shared-head.js and this file also registers a cleanup function that clears up a few prefs already:
Services.prefs.clearUserPref("devtools.dump.emit");
Services.prefs.clearUserPref("devtools.toolbox.host");
Services.prefs.clearUserPref("devtools.toolbox.previousHost");
We should also clear this:
Services.prefs.clearUserPref("devtools.toolbox.selectedTool");
I'm moving this to a separate bug because this impacts many tests and will most probably cause weird failures for tests that assumed a different tool would be selected.
Comment 1•9 years ago
|
||
Good idea
Updated•7 years ago
|
Product: Firefox → DevTools
Reporter | ||
Comment 2•7 years ago
|
||
No changes after 2 years. This has probably lost its relevance and is out of context. Not actionable at this stage.
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•