14 lines
458 B
Dart
14 lines
458 B
Dart
// Placeholder test file for ClojureDart Todo app.
|
|
// ClojureDart compiles to Dart, and tests are typically
|
|
// written in ClojureDart using cljd.test.
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('App compiles successfully', (WidgetTester tester) async {
|
|
// ClojureDart apps are tested via the ClojureDart test framework.
|
|
// This placeholder verifies the test infrastructure works.
|
|
expect(true, isTrue);
|
|
});
|
|
}
|