mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
14 lines
251 B
Dart
14 lines
251 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:hive_test/hive_test.dart';
|
|
|
|
void main() {
|
|
setUp(() async {
|
|
await setUpTestHive();
|
|
});
|
|
|
|
// no migration to test yet
|
|
|
|
tearDown(() async {
|
|
await tearDownTestHive();
|
|
});
|
|
}
|