Files
cup_edit/thermion_dart/test/dummy_tests.dart
2024-10-25 14:22:28 +08:00

15 lines
292 B
Dart

// 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);
});
});
}