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 e43ecf3 commit c3ba1c2Copy full SHA for c3ba1c2
.github/workflows/ci.yml
@@ -35,5 +35,9 @@ jobs:
35
steps:
36
- uses: actions/checkout@v4
37
- uses: subosito/flutter-action@v2
38
+ - run: sudo apt update
39
+ - run: sudo apt install -y libsane-dev
40
+ env:
41
+ DEBIAN_FRONTEND: noninteractive
42
- uses: bluefireteam/melos-action@v3
43
- run: melos run test
packages/sane/test/sane_test.dart
@@ -1,7 +1,9 @@
1
+import 'package:sane/src/sane.dart';
2
import 'package:test/test.dart';
3
4
void main() {
- group('Void group of tests', () {
5
- test('Void test', () {});
+ test('Sane init test', () {
6
+ final sane = Sane();
7
+ expect(sane.init, returnsNormally);
8
});
9
}
0 commit comments