Skip to content

Commit b5603c9

Browse files
committed
Improve test stability.
1 parent 8b40681 commit b5603c9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34+
fail-fast: false
3435
include:
3536
- sqlite_version: "3440200"
3637
sqlite_url: "https://www.sqlite.org/2023/sqlite-autoconf-3440200.tar.gz"

packages/sqlite_async/test/watch_test.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ void main() {
258258
final db = await testUtils.setupDatabase(path: path);
259259
await createTables(db);
260260

261-
const baseTime = 10;
261+
const baseTime = 20;
262262

263263
const throttleDuration = Duration(milliseconds: baseTime);
264264
// delay must be bigger than throttleDuration, and bigger
@@ -300,6 +300,7 @@ void main() {
300300
// [0, 2, 2]: The watch is triggered during the transaction,
301301
// but executes after the transaction (single connection).
302302
// [0]: No updates triggered.
303+
// [2, 2]: Timing issue?
303304
});
304305
});
305306
}

0 commit comments

Comments
 (0)