Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
undo window_test.dart changes
  • Loading branch information
yjbanov committed Aug 30, 2022
commit 7e4940b73c73a8b241edb14b421c338996e48a1f
4 changes: 2 additions & 2 deletions lib/web_ui/test/window_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ void testMain() {
// should've been correctly set to "/bar".
expect(window.browserHistory.urlStrategy, isNot(isNull));
expect(window.browserHistory.urlStrategy!.getPath(), '/bar');
});
}, skip: true); // https://github.com/flutter/flutter/issues/50836

test('initialize browser history with default url strategy (multiple)', () async {
// On purpose, we don't initialize history on the window. We want to let the
Expand Down Expand Up @@ -406,7 +406,7 @@ void testMain() {
// should've been correctly set to "/baz".
expect(window.browserHistory.urlStrategy, isNot(isNull));
expect(window.browserHistory.urlStrategy!.getPath(), '/baz');
});
}, skip: true); // https://github.com/flutter/flutter/issues/50836

test('can disable location strategy', () async {
// Disable URL strategy.
Expand Down