Skip to content

Commit 8384a11

Browse files
authored
Skip flaky test on windows (#1893)
1 parent 8224045 commit 8384a11

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dwds/test/devtools_test.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ void main() {
4444
await context.webDriver.driver.switchTo.window(windows.last);
4545
expect(await context.webDriver.title, equals('Dart DevTools'));
4646
expect(await context.webDriver.currentUrl, contains('ide=Dwds'));
47-
});
47+
// TODO(https://github.com/dart-lang/webdev/issues/1888): Re-enable.
48+
}, skip: Platform.isWindows);
4849

4950
test('can not launch devtools for the same app in multiple tabs', () async {
5051
final appUrl = await context.webDriver.currentUrl;

0 commit comments

Comments
 (0)