mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-04-21 02:42:04 +00:00
11 lines
349 B
Dart
11 lines
349 B
Dart
import 'package:flutter_dotenv/flutter_dotenv.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:madari_client/features/trakt/service/trakt.service.dart';
|
|
|
|
void main() {
|
|
testWidgets('Test trakt integration', (WidgetTester tester) async {
|
|
final service = TraktService();
|
|
|
|
await DotEnv().load(isOptional: true);
|
|
});
|
|
}
|