23bd610f97
Copy into pkg/dwds and pkg/dwds_test_common. * https://github.com/dart-lang/webdev/commit/ac63d06eb9a186f5799b5e6ecb97eb097562ed8a * https://github.com/dart-lang/webdev/commit/f9a56607fac5ad0c979d2647cf11d3e3be993bf6 * https://github.com/dart-lang/webdev/commit/b2cd91f6ef8072847cba0cde33fe6e007403fb7b Selectively revert incompatible changes to the pubspec.yaml files. Change-Id: I4fc2bbd7440e699bb010262529edfc19a0fd3433 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/501221 Commit-Queue: Nicholas Shahan <nshahan@google.com> Reviewed-by: Jessy Yameogo <yjessy@google.com>
23 lines
623 B
Dart
23 lines
623 B
Dart
// Copyright (c) 2026, 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.
|
|
|
|
@Timeout(Duration(minutes: 5))
|
|
@TestOn('vm')
|
|
library;
|
|
|
|
import 'package:dwds/expression_compiler.dart';
|
|
import 'package:dwds_test_common/test_sdk_configuration.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'devtools_common.dart';
|
|
|
|
void main() {
|
|
final provider = TestSdkConfigurationProvider(
|
|
ddcModuleFormat: ModuleFormat.amd,
|
|
);
|
|
tearDownAll(provider.dispose);
|
|
|
|
testAll(provider: provider);
|
|
}
|