Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 83cf280

Browse files
committed
skip in Safari
1 parent 3e12b25 commit 83cf280

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/web_ui/test/window_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ void testMain() {
147147
// should've been correctly set to "/bar".
148148
expect(window.browserHistory.urlStrategy, isNot(isNull));
149149
expect(window.browserHistory.urlStrategy.getPath(), '/bar');
150-
});
150+
}, skip: browserEngine == BrowserEngine.webkit); // https://github.com/flutter/flutter/issues/50836
151151

152152
test('initialize browser history with default url strategy (multiple)', () async {
153153
// On purpose, we don't initialize history on the window. We want to let the
@@ -171,7 +171,7 @@ void testMain() {
171171
// should've been correctly set to "/baz".
172172
expect(window.browserHistory.urlStrategy, isNot(isNull));
173173
expect(window.browserHistory.urlStrategy.getPath(), '/baz');
174-
});
174+
}, skip: browserEngine == BrowserEngine.webkit); // https://github.com/flutter/flutter/issues/50836
175175

176176
test('can disable location strategy', () async {
177177
// Disable URL strategy.

0 commit comments

Comments
 (0)