@dev-blinq/cucumber_client 1.0.1590-dev → 1.0.1591-dev
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.
|
@@ -371,7 +371,7 @@ export class RemoteBrowserService extends EventEmitter {
|
|
|
371
371
|
async getDebugURLs() {
|
|
372
372
|
const url = `${this.CDP_CONNECT_URL}/json`;
|
|
373
373
|
try {
|
|
374
|
-
const response = await fetch(url);
|
|
374
|
+
const response = await fetch(url, { cache: "no-store" });
|
|
375
375
|
if (!response.ok) {
|
|
376
376
|
throw new Error("Error while fetching debug URL");
|
|
377
377
|
}
|