Files
cup_edit/thermion_dart/test/dummy_tests.dart
2024-10-30 11:43:14 +08:00

17 lines
351 B
Dart

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