Skip to content

Commit

Permalink
more test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stevensJourney committed Jul 4, 2024
1 parent 6fe8765 commit 5d0fd64
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
- name: Publish dry-run
run: melos publish --dry-run --yes
- name: Check publish score
run: melos analyze:packages:pana
run: |
dart pub global activate pana
melos analyze:packages:pana
test:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions packages/drift_sqlite_async/test/basic_test.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// TODO
@TestOn('!browser')
import 'dart:async';

import 'package:drift/drift.dart';
Expand Down
2 changes: 2 additions & 0 deletions packages/drift_sqlite_async/test/db_test.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// TODO
@TestOn('!browser')
import 'package:drift/drift.dart';
import 'package:sqlite_async/sqlite_async.dart';
import 'package:test/test.dart';
Expand Down

0 comments on commit 5d0fd64

Please sign in to comment.