mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
19 lines
642 B
Dart
19 lines
642 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);
|
|
});
|
|
});
|
|
}
|