A connector to use edge diagnostics adapter
in sonarwhal
.
First, you need to install sonarwhal
:
npm install sonarwhal
Then, install the new connector:
npm install @sonarwhal/connector-edge
- This connector needs run as Administrator.
onLoadingFailed
event is not dispatched.Security
is not implemented.- Edge has to open a URL by default so, before navigate,
you can get some events for that URL. To avoid that,
you should enable the property
useTabUrl
totrue
and then set the propertytabUrl
with an url to an empty html in the connector options. You can use the urlhttps://empty.sonarwhal.com/
.
Configure the connector name in your .sonarwhalrc
configuration file:
{
"connector": {
"name": "connector-edge"
}
}
Configure the adapter to use an empty HTML opening a new browser or tab:
{
"connector": {
"name": "connector-edge",
"options": {
"useTabUrl": true,
"tabUrl": "https://empty.sonarwhal.com/"
}
}
}
This project adheres to the JS Foundation's code of conduct.
By participating in this project you agree to abide by its terms.
The code is available under the Apache 2.0 license.