Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 80c20fa

Browse files
sync_test: temporarily skip reconnect test on Windows #159
1 parent 91879a5 commit 80c20fa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

‎objectbox_test/test/sync_test.dart‎

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,12 @@ void main() {
230230
expect(c.requestUpdates(subscribeForFuturePushes: true), isFalse);
231231
expect(c.requestUpdates(subscribeForFuturePushes: false), isFalse);
232232
expect(c.outgoingMessageCount(), isZero);
233-
c.triggerReconnect();
233+
if (Platform.isWindows) {
234+
print(
235+
'Skipping triggerReconnect on Windows, needs fixing, see objectbox-dart#159');
236+
} else {
237+
c.triggerReconnect();
238+
}
234239
c.stop();
235240
expect(c.state(), equals(SyncState.stopped));
236241
});

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /