Skip to content

Commit 1cd294a

Browse files
committed
Print sqlite version.
1 parent 72ea7a3 commit 1cd294a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dart/test/migration_test.dart

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ void main() {
2727

2828
/// This tests that the extension can load
2929
test('extension setup', () async {
30+
final row1 = db.select('select sqlite_version() as version').first;
31+
print('sqlite ${row1['version']}');
3032
final row = db.select('select powersync_rs_version() as version').first;
3133
print('powersync-sqlite-core ${row['version']}');
3234
});

0 commit comments

Comments
 (0)