Closed Bug 1256774 Opened 8 years ago Closed 7 years ago

[ESLint] Fix ESLint issues in devtools/client/webconsole/test/browser_bug_638949_copy_link_location.js

Categories

(DevTools :: Console, defect, P3)

defect

Tracking

(Not tracked)

RESOLVED WONTFIX

People

(Reporter: linclark, Unassigned, Mentored, NeedInfo)

References

Details

(Whiteboard: [btpp-backlog])

Attachments

(1 file)

If you haven’t contributed to Firefox before, follow the steps here to set up your environment: https://developer.mozilla.org/en-US/docs/Tools/Contributing#Getting_set_up

Then, automatically configure ESLint to work with the Firefox specific rules by following the instructions here: https://wiki.mozilla.org/DevTools/CodingStandards

Then you can see the issues that need to be fixed by running

> eslint --no-ignore devtools/client/webconsole/test/browser_bug_638949_copy_link_location.js
Blocks: 1256948
Priority: -- → P3
Whiteboard: [btpp-backlog]
Attached patch 1256774.patchSplinter Review
Hi,please review my patch
Attachment #8739372 - Flags: review?(jlaster)
Hi simplyblue, linclark would be a better reviewer.
Flags: needinfo?(lclark)
Comment on attachment 8739372 [details] [diff] [review]
1256774.patch

Review of attachment 8739372 [details] [diff] [review]:
-----------------------------------------------------------------

This one looks good to. Feel free to add the checkin-needed keyword
Attachment #8739372 - Flags: review?(jlaster) → review+
Flags: needinfo?(lclark)
Assignee: nobody → bmanojkumar24
Status: NEW → ASSIGNED
When I test this out with the patch applied, I'm still seeing some eslint errors:

  29:3   error    content is a possible Cross Process Object Wrapper (CPOW)                 mozilla/no-cpows-in-tests
  45:3   error    'goUpdateCommand' is not defined                                          no-undef
  50:9   error    'waitForContextMenu' is not defined                                       no-undef
  57:3   error    content is a possible Cross Process Object Wrapper (CPOW)                 mozilla/no-cpows-in-tests
  75:3   error    'goUpdateCommand' is not defined                                          no-undef
  80:18  error    'promise' is not defined                                                  no-undef
  85:5   error    'goDoCommand' is not defined                                              no-undef
  96:9   error    'waitForContextMenu' is not defined                                       no-undef

Can you please take a look?  This is when running: ./mach eslint --no-ignore devtools/client/webconsole/test/browser_bug_638949_copy_link_location.js

For the no-cpows-in-tests issue you'll need to wrap any calls to content inside a ContentTask.spawn, i.e.

  ContentTask.spawn(gBrowser.selectedBrowser, {}, function* () {
    content.console.log("bug 638949");
  });
Flags: needinfo?(bmanojkumar24)
Assignee: bmanojkumar24 → nobody
Status: ASSIGNED → NEW
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
Product: Firefox → DevTools
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: