@@ -67,7 +67,7 @@ describe("iOSDeviceDebugService", () => {
67
67
{
68
68
scenarioName : "useBundledDevTools and useHttpUrl are not passed" ,
69
69
debugOptions : { } ,
70
- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
70
+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
71
71
} ,
72
72
73
73
// When useBundledDevTools is true
@@ -76,23 +76,23 @@ describe("iOSDeviceDebugService", () => {
76
76
debugOptions : {
77
77
useBundledDevTools : true
78
78
} ,
79
- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
79
+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
80
80
} ,
81
81
{
82
82
scenarioName : "useBundledDevTools is true and useHttpUrl is false" ,
83
83
debugOptions : {
84
84
useBundledDevTools : true ,
85
85
useHttpUrl : false
86
86
} ,
87
- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
87
+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
88
88
} ,
89
89
{
90
90
scenarioName : "useBundledDevTools is true and useHttpUrl is true" ,
91
91
debugOptions : {
92
92
useBundledDevTools : true ,
93
93
useHttpUrl : true
94
94
} ,
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 } ` ,
96
96
} ,
97
97
98
98
// When useBundledDevTools is false
@@ -101,23 +101,23 @@ describe("iOSDeviceDebugService", () => {
101
101
debugOptions : {
102
102
useBundledDevTools : false
103
103
} ,
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 } ` ,
105
105
} ,
106
106
{
107
107
scenarioName : "useBundledDevTools is false and useHttpUrl is false" ,
108
108
debugOptions : {
109
109
useBundledDevTools : false ,
110
110
useHttpUrl : false
111
111
} ,
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 } ` ,
113
113
} ,
114
114
{
115
115
scenarioName : "useBundledDevTools is false and useHttpUrl is true" ,
116
116
debugOptions : {
117
117
useBundledDevTools : false ,
118
118
useHttpUrl : true
119
119
} ,
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 } ` ,
121
121
} ,
122
122
123
123
// When useBundledDevTools is not passed
@@ -126,14 +126,14 @@ describe("iOSDeviceDebugService", () => {
126
126
debugOptions : {
127
127
useHttpUrl : false
128
128
} ,
129
- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
129
+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
130
130
} ,
131
131
{
132
132
scenarioName : "useBundledDevTools is not passed and useHttpUrl is true" ,
133
133
debugOptions : {
134
134
useHttpUrl : true
135
135
} ,
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 } ` ,
137
137
} ,
138
138
139
139
// devToolsCommit tests
@@ -142,38 +142,38 @@ describe("iOSDeviceDebugService", () => {
142
142
debugOptions : {
143
143
useBundledDevTools : false
144
144
} ,
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 } ` ,
146
146
} ,
147
147
{
148
148
scenarioName : "devToolsCommit is disregarded when useBundledDevTools is not passed" ,
149
149
debugOptions : {
150
150
devToolsCommit : customDevToolsCommit
151
151
} ,
152
- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
152
+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
153
153
} ,
154
154
{
155
155
scenarioName : "devToolsCommit is set to passed value when useBundledDevTools is set to false" ,
156
156
debugOptions : {
157
157
useBundledDevTools : false ,
158
158
devToolsCommit : customDevToolsCommit
159
159
} ,
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 } ` ,
161
161
} ,
162
162
{
163
163
scenarioName : "devToolsCommit is set to passed value when useHttpUrl is set to true" ,
164
164
debugOptions : {
165
165
useHttpUrl : true ,
166
166
devToolsCommit : customDevToolsCommit
167
167
} ,
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 } ` ,
169
169
} ,
170
170
{
171
171
scenarioName : "devToolsCommit is disregarded when useBundledDevTools is set to true" ,
172
172
debugOptions : {
173
173
useBundledDevTools : true ,
174
174
devToolsCommit : customDevToolsCommit
175
175
} ,
176
- expectedChromeUrl : `chrome- devtools://devtools/bundled/inspector.html?experiments=true& ws=localhost:${ expectedPort } ` ,
176
+ expectedChromeUrl : `devtools://devtools/bundled/inspector.html?ws=localhost:${ expectedPort } ` ,
177
177
}
178
178
179
179
] ;
0 commit comments