19 lines
428 B
Dart
19 lines
428 B
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import '../constants.dart';
|
|
import '../util.dart';
|
|
|
|
part 'set_get_delete.dart';
|
|
|
|
void main() {
|
|
final shouldSkip = kIsWeb;
|
|
|
|
skippableGroup('Cookie Manager', () {
|
|
setGetDelete();
|
|
}, skip: shouldSkip);
|
|
}
|