2023-06-10 23:55:42 +00:00
|
|
|
import 'dart:async';
|
|
|
|
|
2022-04-30 19:22:31 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
2023-06-10 23:55:42 +00:00
|
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
2022-04-28 21:23:38 +00:00
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
2023-06-10 23:55:42 +00:00
|
|
|
import '../constants.dart';
|
|
|
|
import '../util.dart';
|
2022-04-28 21:23:38 +00:00
|
|
|
|
2023-06-10 23:55:42 +00:00
|
|
|
part 'set_get_delete.dart';
|
2022-04-28 21:23:38 +00:00
|
|
|
|
|
|
|
void main() {
|
2022-04-30 19:22:31 +00:00
|
|
|
final shouldSkip = kIsWeb;
|
|
|
|
|
2023-06-10 23:55:42 +00:00
|
|
|
skippableGroup('Cookie Manager', () {
|
2022-04-28 21:23:38 +00:00
|
|
|
setGetDelete();
|
2022-04-30 19:22:31 +00:00
|
|
|
}, skip: shouldSkip);
|
2022-04-28 21:23:38 +00:00
|
|
|
}
|