diff --git a/dwds/CHANGELOG.md b/dwds/CHANGELOG.md index 3c3204f81..422927cc4 100644 --- a/dwds/CHANGELOG.md +++ b/dwds/CHANGELOG.md @@ -1,5 +1,6 @@ ## 24.2.0-wip +- Remove `build_daemon_ddc_and_canary_evaluate_test`. - [2512](https://github.com/dart-lang/webdev/issues/2512) - Replace deprecated JS code `this.__proto__` with `Object.getPrototypeOf(this)`. - [#2500](https://github.com/dart-lang/webdev/pull/2500) - Migrate injected client code to `package:web`. - [#2491](https://github.com/dart-lang/webdev/pull/2491) - Deprecated MetadataProvider's, CompilerOptions', SdkConfiguration's & SdkLayout's soundNullSafety. - [#2427](https://github.com/dart-lang/webdev/issues/2427) diff --git a/dwds/test/build_daemon_ddc_and_canary_evaluate_test.dart b/dwds/test/build_daemon_ddc_and_canary_evaluate_test.dart deleted file mode 100644 index e9facab56..000000000 --- a/dwds/test/build_daemon_ddc_and_canary_evaluate_test.dart +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2024, 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. - -@Tags(['daily']) -@TestOn('vm') -@Timeout(Duration(minutes: 2)) -library; - -import 'package:dwds/expression_compiler.dart'; -import 'package:test/test.dart'; -import 'package:test_common/test_sdk_configuration.dart'; - -import 'evaluate_common.dart'; -import 'fixtures/context.dart'; - -void main() async { - // Enable verbose logging for debugging. - final debug = false; - - final provider = TestSdkConfigurationProvider( - verbose: debug, - ddcModuleFormat: ModuleFormat.ddc, - canaryFeatures: true, - ); - tearDownAll(provider.dispose); - - testAll( - provider: provider, - compilationMode: CompilationMode.buildDaemon, - debug: debug, - ); -}