Skip to content

Commit 98bbc31

Browse files
authored
[engsys] fix issue with browser tests not launching due to dev-tool update (#38423)
Fixup for #37255
1 parent 3c84063 commit 98bbc31

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

eng/pipelines/templates/jobs/live.tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
pwsh: true
164164
ScriptType: InlineScript
165165
Inline: |
166-
Start-Process "node" -ArgumentList "launch.js run start-browser-relay" -NoNewWindow -WorkingDirectory "$(Build.SourcesDirectory)/common/tools/dev-tool"
166+
Start-Process "node" -ArgumentList "launch.ts run start-browser-relay" -NoNewWindow -WorkingDirectory "$(Build.SourcesDirectory)/common/tools/dev-tool"
167167
for ($i = 0; $i -lt 10; $i++) {
168168
try {
169169
Invoke-WebRequest -Uri "http://localhost:4895/health" | Out-Null
@@ -184,7 +184,7 @@ jobs:
184184

185185
- ${{ else }}:
186186
- pwsh: |
187-
Start-Process "node" -ArgumentList "launch.js run start-browser-relay" -NoNewWindow -WorkingDirectory "$(Build.SourcesDirectory)/common/tools/dev-tool"
187+
Start-Process "node" -ArgumentList "launch.ts run start-browser-relay" -NoNewWindow -WorkingDirectory "$(Build.SourcesDirectory)/common/tools/dev-tool"
188188
for ($i = 0; $i -lt 10; $i++) {
189189
try {
190190
Invoke-WebRequest -Uri "http://localhost:4895/health" | Out-Null

0 commit comments

Comments
 (0)