76f266645d
含 Phase 1.1 IM seq 排序、断线重连、多端已读同步与微信式语音转文字 UI。 排除 node_modules、构建产物、安装包与 .env 密钥。 Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
312 B
Dart
12 lines
312 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:fengying_oa/app_config.dart';
|
|
|
|
void main() {
|
|
test('brand', () {
|
|
expect(AppConfig.brand.contains('风影'), isTrue);
|
|
expect(AppConfig.defaultImPort, 8901);
|
|
expect(AppConfig.version, '3.1.8');
|
|
expect(AppConfig.build, 318);
|
|
});
|
|
}
|