mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-13 18:58:53 +01:00
Fix codegen test running before init is done
This commit is contained in:
parent
cd5e771044
commit
04d7441fc0
1 changed files with 2 additions and 2 deletions
|
@ -3,8 +3,8 @@ import 'package:test/test.dart';
|
|||
|
||||
import 'util.dart';
|
||||
|
||||
void main() {
|
||||
resolveCompilationUnit("test/src/drift_table_sort.dart");
|
||||
void main() async {
|
||||
await resolveCompilationUnit("test/src/drift_table_sort.dart");
|
||||
tearDown(() {
|
||||
// Increment this after each test so the next test has it's own package
|
||||
_pkgCacheCount++;
|
||||
|
|
Loading…
Reference in a new issue