We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30cb335 commit 7c29becCopy full SHA for 7c29bec
test/model/actions_test.dart
@@ -180,6 +180,7 @@ void main() {
180
181
test('fallback to current token if acked is missing', () => awaitFakeAsync((async) async {
182
await prepare(ackedPushToken: null);
183
+ addTearDown(NotificationService.debugReset);
184
NotificationService.instance.token = ValueNotifier('asdf');
185
186
final newConnection = separateConnection()
@@ -193,6 +194,7 @@ void main() {
193
194
195
test('no error if acked token and current token both missing', () => awaitFakeAsync((async) async {
196
197
198
NotificationService.instance.token = ValueNotifier(null);
199
200
final newConnection = separateConnection();
0 commit comments