20 lines
478 B
Dart
20 lines
478 B
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
|
import '../constants.dart';
|
|
import '../env.dart';
|
|
import '../util.dart';
|
|
|
|
part 'clear_and_set_proxy_override.dart';
|
|
|
|
void main() {
|
|
final shouldSkip = kIsWeb;
|
|
|
|
skippableGroup('Proxy Controller', () {
|
|
clearAndSetProxyOverride();
|
|
}, skip: shouldSkip);
|
|
}
|