@@ -78,7 +78,7 @@ describe("iOSDeviceDebugService", () => {
7878 {
7979 scenarioName : "useBundledDevTools and useHttpUrl are not passed" ,
8080 debugOptions : { } ,
81- expectedChromeUrl : `chrome-devtools://devtools/remote/serve_file/@ ${ expectedDevToolsCommitSha } /inspector.html?experiments=true&ws=localhost:${ expectedPort } ` ,
81+ expectedChromeUrl : `chrome-devtools://devtools/bundled /inspector.html?experiments=true&ws=localhost:${ expectedPort } ` ,
8282 } ,
8383
8484 // When useBundledDevTools is true
@@ -137,7 +137,7 @@ describe("iOSDeviceDebugService", () => {
137137 debugOptions : {
138138 useHttpUrl : false
139139 } ,
140- expectedChromeUrl : `chrome-devtools://devtools/remote/serve_file/@ ${ expectedDevToolsCommitSha } /inspector.html?experiments=true&ws=localhost:${ expectedPort } ` ,
140+ expectedChromeUrl : `chrome-devtools://devtools/bundled /inspector.html?experiments=true&ws=localhost:${ expectedPort } ` ,
141141 } ,
142142 {
143143 scenarioName : "useBundledDevTools is not passed and useHttpUrl is true" ,
@@ -149,16 +149,18 @@ describe("iOSDeviceDebugService", () => {
149149
150150 // devToolsCommit tests
151151 {
152- scenarioName : "devToolsCommit defaults to ${expectedDevToolsCommitSha} and is used in result when useBundledDevTools is not passed" ,
153- debugOptions : { } ,
152+ scenarioName : `devToolsCommit defaults to ${ expectedDevToolsCommitSha } and is used in result when useBundledDevTools is not passed` ,
153+ debugOptions : {
154+ useBundledDevTools : false
155+ } ,
154156 expectedChromeUrl : `chrome-devtools://devtools/remote/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?experiments=true&ws=localhost:${ expectedPort } ` ,
155157 } ,
156158 {
157- scenarioName : "devToolsCommit is set to passed value when useBundledDevTools is not passed" ,
159+ scenarioName : "devToolsCommit is disregarded when useBundledDevTools is not passed" ,
158160 debugOptions : {
159161 devToolsCommit : customDevToolsCommit
160162 } ,
161- expectedChromeUrl : `chrome-devtools://devtools/remote/serve_file/@ ${ customDevToolsCommit } /inspector.html?experiments=true&ws=localhost:${ expectedPort } ` ,
163+ expectedChromeUrl : `chrome-devtools://devtools/bundled /inspector.html?experiments=true&ws=localhost:${ expectedPort } ` ,
162164 } ,
163165 {
164166 scenarioName : "devToolsCommit is set to passed value when useBundledDevTools is set to false" ,
0 commit comments