Releases: dart-lang/test
Releases · dart-lang/test
package:test v1.25.1
- Fix a bug where in precompiled mode, html files for tests were no longer
created. - Document the silent reporter in CLI help output.
package:test_core v0.6.0
- Handle paths with leading
/
when spawning test isolates. - Added
dart2wasm
as a supported compiler for thechrome
runtime. - BREAKING: Removed the
experimentalChromeWasm
runtime. - BREAKING: Removed
Runtime.isJS
andRuntime.isWasm
, as this is now
based on the compiler and not the runtime. - BREAKING: Removed
Configuration.pubServeUrl
and support for it. - Fix running of tests defined under
lib/
with relative imports to other
libraries in the package. - Update the
package:frontend_server_client
constraint to allow version
4.0.0
. - Update the
package:vm_service
constraint to allow version14.x
.
package:test_api v0.7.0
- Deprecate
Runtime.internetExplorer
. - Added
dart2wasm
as a supported compiler for thechrome
runtime. - BREAKING: Removed the
experimentalChromeWasm
runtime. - BREAKING: Removed
Runtime.isJS
andRuntime.isWasm
, as this is now
based on the compiler and not the runtime.
package:test v1.25.0
- Handle paths with leading
/
when spawning test isolates. - Add support for the
dart2wasm
compiler in chrome and firefox. - BREAKING: Remove the
experimental-chrome-wasm
platform, you can now use
-p chrome -c dart2wasm
instead.- Note that this has always been advertised as a change that would happen in a
future non-breaking release.
- Note that this has always been advertised as a change that would happen in a
- BREAKING:Dropped support for
--pub-serve
which has long not been tested
or supported.- We do not anticipate much if any actual breakage or existing usage of this
feature, which is why we are making this change in a non-breaking release. - If you do require this feature, file an issue and we can look at adding it
back.
- We do not anticipate much if any actual breakage or existing usage of this
- BREAKING: Fully remove support for Internet Explorer.
- Fix running of tests defined under
lib/
with relative imports to other
libraries in the package.
package:test_core v0.5.9
- Update the vm_service constraint to allow version
13.x
.
package:test v1.24.9
- Update the vm_service constraint to allow version
13.x
.
package:test_core v0.5.8
- Allow omitting the
Compiler
argument tocurrentPlatform
.
package:test v1.24.8
- Remove spurious deprecation during autocomplete for
setUp
andtearDown
.
package:test_core v0.5.7
- Pass --disable-program-split to dart2js to fix tests which use deferred
loading. - Add a 'silent' reporter option. Keep it hidden in the CLI args help since it
is not useful in the general case, but can be useful for tests of the test
runner. - Update to
package:vm_service
12.0.0
package:test v1.24.7
- Simplify the initialization of the per-suite message channel within browser
tests. See #2065 - Add a timeout to browser test suite loads.
- Fix running of browser tests that use deferred loaded libraries.