Releases: dart-lang/test
Releases · dart-lang/test
package:test_api v0.7.2
- Update min SDK constraint to 3.2.0.
package:test v1.25.6
- Point API doc links to
package:test
canonical libraries. - Fix testing with
dart2wasm
- usedart compile wasm
instead of depending on
SDK internals - Update min SDK constraint to 3.2.0.
package:test v1.25.5
- Update the
package:web_socket_channel
version constraint to allow3.x
. - Update the
package:shelf_web_socket
version constraint to allow2.x
.
package:test_core v0.6.2
- Add
@doNotSubmit
to more declarations of thesolo
parameter.
package:test v1.25.4
- Add
@doNotSubmit
to more declarations of thesolo
parameter.
package:test_core v0.6.1
- Handle missing package configs.
- Document the silent reporter in CLI help output.
- Support enabling experiments with the dart2wasm compiler.
package:test_api v0.7.1
- Added
@doNotSubmit
totest(solo: ...)
andgroup(solo: ...)
. In
practice, this means that code that was relying on ignoring deprecation
warnings and usingsolo
orgroup
with askip
parameter will now fail if
dart analyze --fatal-infos
(or similar) is enabled.
package:test v1.25.3
- Remove outdated StreamMatcher link from README table of contents.
- Document the silent reporter in CLI help output.
- Support enabling experiments with the dart2wasm compiler.
- Added
@doNotSubmit
totest(solo: ...)
andgroup(solo: ...)
. In
practice, this means that code that was relying on ignoring deprecation
warnings and usingsolo
orgroup
with askip
parameter will now fail if
dart analyze --fatal-infos
(or similar) is enabled.
package:checks v0.3.0
- Breaking Changes
- Remove the
Condition
class and theit()
utility. Replace calls to
(it()..someExpectation())
with((it) => it.someExpectation())
.
- Remove the
- Add class modifiers to restrict extension of implementation classes.
package:test v1.25.2
- Fix a bug running browser tests with paths containing windows directory
separator follow by a character which is an invalid Dart string escape
sequence.