Skip to content

Commit

Permalink
Fixed DEVTOOLS_URL fallback value (#10626)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist authored Dec 6, 2024
1 parent d89b497 commit e466aec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/perf-analysis/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import {

const PLAYWRIGHT_TIMEOUT = 60_000;
const DISPATCH_URL = process.env.DISPATCH_ADDRESS ?? "wss://dispatch.replay.io";
const DEVTOOL_URL = process.env.DEVTOOLS_URL ?? "https://app.replay.io";
const DEVTOOLS_URL = process.env.DEVTOOLS_URL || "https://app.replay.io";

const tests = [
{
title: "devtools-object-preview",
url: `${DEVTOOL_URL}/recording/appreplayio--87db126a-82cf-4477-b244-b57a118d0b1b`,
url: `${DEVTOOLS_URL}/recording/appreplayio--87db126a-82cf-4477-b244-b57a118d0b1b`,
script: devtoolsObjectPreview,
},
];
Expand Down

0 comments on commit e466aec

Please sign in to comment.