Browse Source

fix(app): Fix test driver importing flutter

Signed-off-by: jld3103 <jld3103yt@gmail.com>
pull/538/head
jld3103 1 year ago
parent
commit
49f8caf686
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 4
      packages/app/test_driver/integration_test.dart

4
packages/app/test_driver/integration_test.dart

@ -1,6 +1,5 @@
import 'dart:io';
import 'package:flutter/foundation.dart';
import 'package:integration_test/integration_test_driver_extended.dart';
Future<void> main() async {
@ -16,6 +15,7 @@ Future<void> main() async {
},
);
} catch (e) {
debugPrint('Error occurred: $e');
// ignore: avoid_print
print('Error occurred: $e');
}
}

Loading…
Cancel
Save