@@ -67,7 +67,7 @@ describe("iOSDeviceDebugService", () => {
6767 {
6868 scenarioName : "useBundledDevTools and useHttpUrl are not passed" ,
6969 debugOptions : { } ,
70- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
70+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
7171 } ,
7272
7373 // When useBundledDevTools is true
@@ -76,23 +76,23 @@ describe("iOSDeviceDebugService", () => {
7676 debugOptions : {
7777 useBundledDevTools : true
7878 } ,
79- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
79+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
8080 } ,
8181 {
8282 scenarioName : "useBundledDevTools is true and useHttpUrl is false" ,
8383 debugOptions : {
8484 useBundledDevTools : true ,
8585 useHttpUrl : false
8686 } ,
87- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
87+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
8888 } ,
8989 {
9090 scenarioName : "useBundledDevTools is true and useHttpUrl is true" ,
9191 debugOptions : {
9292 useBundledDevTools : true ,
9393 useHttpUrl : true
9494 } ,
95- expectedChromeUrl : `https://chrome-devtools-frontend.appspot.com/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
95+ expectedChromeUrl : `https://chrome-devtools-frontend.appspot.com/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?ws=localhost:${ expectedPort } ` ,
9696 } ,
9797
9898 // When useBundledDevTools is false
@@ -101,23 +101,23 @@ describe("iOSDeviceDebugService", () => {
101101 debugOptions : {
102102 useBundledDevTools : false
103103 } ,
104- expectedChromeUrl : `chrome- devtools://devtools/remote/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
104+ expectedChromeUrl : `devtools://devtools/remote/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?ws=localhost:${ expectedPort } ` ,
105105 } ,
106106 {
107107 scenarioName : "useBundledDevTools is false and useHttpUrl is false" ,
108108 debugOptions : {
109109 useBundledDevTools : false ,
110110 useHttpUrl : false
111111 } ,
112- expectedChromeUrl : `chrome- devtools://devtools/remote/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
112+ expectedChromeUrl : `devtools://devtools/remote/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?ws=localhost:${ expectedPort } ` ,
113113 } ,
114114 {
115115 scenarioName : "useBundledDevTools is false and useHttpUrl is true" ,
116116 debugOptions : {
117117 useBundledDevTools : false ,
118118 useHttpUrl : true
119119 } ,
120- expectedChromeUrl : `https://chrome-devtools-frontend.appspot.com/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
120+ expectedChromeUrl : `https://chrome-devtools-frontend.appspot.com/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?ws=localhost:${ expectedPort } ` ,
121121 } ,
122122
123123 // When useBundledDevTools is not passed
@@ -126,14 +126,14 @@ describe("iOSDeviceDebugService", () => {
126126 debugOptions : {
127127 useHttpUrl : false
128128 } ,
129- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
129+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
130130 } ,
131131 {
132132 scenarioName : "useBundledDevTools is not passed and useHttpUrl is true" ,
133133 debugOptions : {
134134 useHttpUrl : true
135135 } ,
136- expectedChromeUrl : `https://chrome-devtools-frontend.appspot.com/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
136+ expectedChromeUrl : `https://chrome-devtools-frontend.appspot.com/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?ws=localhost:${ expectedPort } ` ,
137137 } ,
138138
139139 // devToolsCommit tests
@@ -142,38 +142,38 @@ describe("iOSDeviceDebugService", () => {
142142 debugOptions : {
143143 useBundledDevTools : false
144144 } ,
145- expectedChromeUrl : `chrome- devtools://devtools/remote/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
145+ expectedChromeUrl : `devtools://devtools/remote/serve_file/@${ expectedDevToolsCommitSha } /inspector.html?ws=localhost:${ expectedPort } ` ,
146146 } ,
147147 {
148148 scenarioName : "devToolsCommit is disregarded when useBundledDevTools is not passed" ,
149149 debugOptions : {
150150 devToolsCommit : customDevToolsCommit
151151 } ,
152- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
152+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
153153 } ,
154154 {
155155 scenarioName : "devToolsCommit is set to passed value when useBundledDevTools is set to false" ,
156156 debugOptions : {
157157 useBundledDevTools : false ,
158158 devToolsCommit : customDevToolsCommit
159159 } ,
160- expectedChromeUrl : `chrome- devtools://devtools/remote/serve_file/@${ customDevToolsCommit } /inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
160+ expectedChromeUrl : `devtools://devtools/remote/serve_file/@${ customDevToolsCommit } /inspector.html?ws=localhost:${ expectedPort } ` ,
161161 } ,
162162 {
163163 scenarioName : "devToolsCommit is set to passed value when useHttpUrl is set to true" ,
164164 debugOptions : {
165165 useHttpUrl : true ,
166166 devToolsCommit : customDevToolsCommit
167167 } ,
168- expectedChromeUrl : `https://chrome-devtools-frontend.appspot.com/serve_file/@${ customDevToolsCommit } /inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
168+ expectedChromeUrl : `https://chrome-devtools-frontend.appspot.com/serve_file/@${ customDevToolsCommit } /inspector.html?ws=localhost:${ expectedPort } ` ,
169169 } ,
170170 {
171171 scenarioName : "devToolsCommit is disregarded when useBundledDevTools is set to true" ,
172172 debugOptions : {
173173 useBundledDevTools : true ,
174174 devToolsCommit : customDevToolsCommit
175175 } ,
176- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
176+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
177177 }
178178
179179 ] ;
0 commit comments