We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f13b68 commit 6d40d83Copy full SHA for 6d40d83
.github/workflows/tests.yml
@@ -15,6 +15,7 @@ jobs:
15
- uses: actions/checkout@v3
16
with:
17
submodules: true
18
+ - uses: dart-lang/setup-dart@v1
19
20
- name: Build lib
21
run: |
@@ -37,3 +38,8 @@ jobs:
37
38
- name: Check loadable extension
39
40
./target/release/sqlite3 ":memory:" ".load ./target/release/libpowersync" "select powersync_rs_version()"
41
+
42
+ - name: Run dart-based tests
43
+ run: |
44
+ cd dart
45
+ dart test
dart/README.md
@@ -0,0 +1,15 @@
1
+# Dart Tests
2
3
+This folder contains tests written in Dart, as a convenient higher-level language.
4
5
+The tests loads the compiled debug library. Before testing, build first using:
6
7
+```sh
8
+cargo build -p powersync_loadable
9
+```
10
11
+Then test here:
12
13
14
+dart test
0 commit comments