14 lines
326 B
Dart
14 lines
326 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'find_interactions.dart';
|
|
|
|
void main() {
|
|
final shouldSkip =
|
|
kIsWeb || [TargetPlatform.macOS].contains(defaultTargetPlatform);
|
|
|
|
group('FindInteractionController', () {
|
|
findInteractions();
|
|
}, skip: shouldSkip);
|
|
}
|