워크스페이스 기본 포트와 검증 문서를 실제 런타임 기본값에 맞추고, 브리지 경계에서 adapter config 타입 정보를 보존해야 이후 원격 smoke와 경계 안정화 작업이 같은 계약을 사용할 수 있다.
9 lines
312 B
Dart
9 lines
312 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:iop_client/client_config.dart';
|
|
|
|
void main() {
|
|
test('ClientConfig default values', () {
|
|
expect(ClientConfig.controlPlaneHttpUrl, 'http://localhost:18000');
|
|
expect(ClientConfig.controlPlaneWireUrl, 'ws://localhost:19080/client');
|
|
});
|
|
}
|