We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0425609 commit 3a9f5ffCopy full SHA for 3a9f5ff
webdev/test/e2e_test.dart
@@ -71,10 +71,9 @@ void main() {
71
expect(smokeYaml['environment']['sdk'],
72
equals(webdevYaml['environment']['sdk']));
73
expect(
74
- VersionConstraint.parse(smokeYaml['dev_dependencies']['build_runner'])
75
- .union(buildRunnerConstraint)
76
- .isEmpty,
77
- false);
+ buildRunnerConstraint.allowsAny(VersionConstraint.parse(
+ smokeYaml['dev_dependencies']['build_runner'])),
+ true);
78
expect(smokeYaml['dev_dependencies']['build_web_compilers'],
79
equals(buildWebCompilersConstraint.toString()));
80
});
0 commit comments