chore: dummy tests

This commit is contained in:
Nick Fisher
2024-10-25 14:22:28 +08:00
parent 4d778326c6
commit 10fd78276c
2 changed files with 12 additions and 6 deletions

View File

@@ -1,9 +1,13 @@
// just for investigating crashes on GitHub actions
import 'package:test/test.dart';
import 'helpers.dart';
void main() async {
group("test", () {
test("test", () {
print("Creating test helper");
final testHelper = TestHelper("dummy");
expect(1, 1);
});
});