Fix integration tests on web

This commit is contained in:
Simon Binder 2020-05-03 13:56:49 +02:00
parent 0a30b8a12e
commit aed5b43892
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,7 @@ void crudTests(TestExecutor executor) {
final result = await db.friendshipsOf(a.id).getSingle();
expect(result, FriendshipsOfResult(reallyGoodFriends: true, user: b));
await db.close();
});
test('runCustom with args', () async {
@ -54,5 +55,6 @@ void crudTests(TestExecutor executor) {
<int>[1, 2]);
expect(await db.friendsOf(1).get(), isNotEmpty);
await db.close();
});
}