Files
sdk/pkg/dds/test/devtools_server/utils/serve_devtools.dart
T
Ben Konyi 1771c55238 [ DDS ] Split DevTools server tests into smaller pieces
Should resolve timeout issues, particularly around server connection
tests

Change-Id: Ic06d1179b09a17497e38de9aa19549f66ff79d2c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/240180
Reviewed-by: Kenzie Davisson <kenzieschmoll@google.com>
2022-04-04 22:07:21 +00:00

20 lines
536 B
Dart

// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
import 'package:dds/devtools_server.dart';
import '../../common/test_helper.dart';
void main(List<String> args) async {
unawaited(
DevToolsServer().serveDevToolsWithArgs(
args,
customDevToolsPath:
devtoolsAppUri(prefix: '../../../../../').toFilePath(),
),
);
}