1771c55238
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>
10 lines
398 B
Dart
10 lines
398 B
Dart
// Copyright 2022 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'server_connection_common.dart';
|
|
|
|
// This test reuses much of the same logic as server_connection_vm_service_test
|
|
// but running both in the same process will result in a timeout.
|
|
void main() => runTest(useVmService: false);
|