flutter/packages/flutter_tools/test/commands/update_packages_test.dart
Todd Volkert 4cd12fc8b7
Mark update-packages as non-experimental (#35467)
Marking it as experimental was breaking tests and packaging
scripts on stable branches.
2019-07-02 18:24:25 -07:00

19 lines
636 B
Dart

// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_tools/src/commands/update_packages.dart';
import '../src/common.dart';
import '../src/context.dart';
void main() {
group('UpdatePackagesCommand', () {
// Marking it as experimental breaks bots tests and packaging scripts on stable branches.
testUsingContext('is not marked as experimental', () async {
final UpdatePackagesCommand command = UpdatePackagesCommand();
expect(command.isExperimental, isFalse);
});
});
}