File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ class Dwds {
155
155
devToolsServerAddress:
156
156
launchedDevToolsUri ??
157
157
debugSettings.ddsConfiguration.devToolsServerAddress,
158
+ serveDevTools: debugSettings.ddsConfiguration.serveDevTools,
158
159
),
159
160
debugSettings.launchDevToolsInNewWindow,
160
161
useWebSocketConnection: useDwdsWebSocketConnection,
Original file line number Diff line number Diff line change 8
8
9
9
import 'dart:io' ;
10
10
11
+ import 'package:dwds/src/config/tool_configuration.dart' ;
11
12
import 'package:test/test.dart' ;
12
13
import 'package:test_common/test_sdk_configuration.dart' ;
13
14
import 'package:vm_service/vm_service.dart' ;
@@ -163,6 +164,9 @@ void main() {
163
164
await context.setUp (
164
165
debugSettings: TestDebugSettings .noDevToolsLaunch ().copyWith (
165
166
enableDevToolsLaunch: true ,
167
+ ddsConfiguration: DartDevelopmentServiceConfiguration (
168
+ serveDevTools: false ,
169
+ ),
166
170
),
167
171
);
168
172
});
You can’t perform that action at this time.
0 commit comments