Files
docker-compose-projects/server/test/server_test.dart
2026-02-23 16:40:06 +03:00

8 lines
104 B
Dart

import 'package:test/test.dart';
void main() {
test('smoke test', () {
expect(1 + 1, 2);
});
}