add flutter_test to allowed experiments

Bug: https://github.com/dart-lang/sdk/issues/41538
Change-Id: I494fb4404c17e07c2df0d429570b12ebc072889b
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/153061
Auto-Submit: Jake Macdonald <jakemac@google.com>
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Bob Nystrom <rnystrom@google.com>
This commit is contained in:
Jacob MacDonald 2020-07-01 18:15:54 +00:00 committed by commit-bot@chromium.org
parent af124aeb9b
commit b743d6cac6
2 changed files with 6 additions and 0 deletions

View file

@ -120,6 +120,9 @@ const AllowedExperimentalFlags defaultAllowedExperimentalFlags =
"flutter": {
ExperimentalFlag.nonNullable,
},
"flutter_test": {
ExperimentalFlag.nonNullable,
},
"js": {
ExperimentalFlag.nonNullable,
},

View file

@ -46,6 +46,9 @@
"flutter": {
"experimentSet": "nullSafety"
},
"flutter_test": {
"experimentSet": "nullSafety"
},
"js": {
"experimentSet": "nullSafety"
},