@@ -58,18 +58,13 @@ void main() {
58
58
await context.tearDown ();
59
59
});
60
60
61
- test (
62
- 'can launch devtools' ,
63
- () async {
64
- final windows = await context.webDriver.windows.toList ();
65
- await context.webDriver.driver.switchTo.window (windows.last);
66
- expect (await context.webDriver.pageSource, contains ('DevTools' ));
67
- expect (await context.webDriver.currentUrl, contains ('ide=Dwds' ));
68
- // TODO(https://github.com/dart-lang/webdev/issues/1888): Re-enable.
69
- },
70
- skip: Platform .isWindows,
71
- retry: 0 ,
72
- );
61
+ test ('can launch devtools' , () async {
62
+ final windows = await context.webDriver.windows.toList ();
63
+ await context.webDriver.driver.switchTo.window (windows.last);
64
+ expect (await context.webDriver.pageSource, contains ('DevTools' ));
65
+ expect (await context.webDriver.currentUrl, contains ('ide=Dwds' ));
66
+ // TODO(https://github.com/dart-lang/webdev/issues/1888): Re-enable.
67
+ }, skip: Platform .isWindows);
73
68
74
69
test (
75
70
'can not launch devtools for the same app in multiple tabs' ,
@@ -169,9 +164,6 @@ void main() {
169
164
await context.setUp (
170
165
debugSettings: TestDebugSettings .noDevToolsLaunch ().copyWith (
171
166
enableDevToolsLaunch: true ,
172
- ddsConfiguration: DartDevelopmentServiceConfiguration (
173
- serveDevTools: false ,
174
- ),
175
167
),
176
168
);
177
169
});
@@ -198,9 +190,6 @@ void main() {
198
190
await context.setUp (
199
191
debugSettings: TestDebugSettings .noDevToolsLaunch ().copyWith (
200
192
enableDebugExtension: true ,
201
- ddsConfiguration: DartDevelopmentServiceConfiguration (
202
- serveDevTools: false ,
203
- ),
204
193
),
205
194
);
206
195
});
0 commit comments