@intuned/runtime-dev 1.3.6-brave.1 → 1.3.6-brave.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -290,9 +290,10 @@ async function getRemotePlaywrightContext(cdpAddress) {
|
|
|
290
290
|
}
|
|
291
291
|
async function getExecutablePath() {
|
|
292
292
|
if (process.env.BROWSER_TYPE === "brave") {
|
|
293
|
-
|
|
293
|
+
const bravePath = await (0, _which.default)("brave-browser-stable", {
|
|
294
294
|
nothrow: true
|
|
295
|
-
})
|
|
295
|
+
});
|
|
296
|
+
return bravePath ?? undefined;
|
|
296
297
|
}
|
|
297
298
|
return undefined;
|
|
298
299
|
}
|