Unverified Commit 6bf3ccd4 authored by Christopher Fujino's avatar Christopher Fujino Committed by GitHub

[flutter_tools] fix instructions to disable CLI animations (#139094)

Fixes https://github.com/flutter/flutter/issues/139011
parent 6035c5cc
......@@ -156,12 +156,14 @@ const Feature flutterWebWasm = Feature(
),
);
const String kCliAnimationsFeatureName = 'cli-animations';
/// The [Feature] for CLI animations.
///
/// The TERM environment variable set to "dumb" turns this off.
const Feature cliAnimation = Feature.fullyEnabled(
name: 'animations in the command line interface',
configSetting: 'cli-animations',
configSetting: kCliAnimationsFeatureName,
);
/// Enable native assets compilation and bundling.
......
......@@ -36,7 +36,8 @@ const String _kFlutterFirstRunMessage = '''
║ See Google's privacy policy:
https://policies.google.com/privacy ║
To disable animations in this tool, use 'flutter config --no-animations'.
To disable animations in this tool, use
'flutter config --no-cli-animations'.
╚════════════════════════════════════════════════════════════════════════════╝
''';
......
......@@ -4,6 +4,7 @@
import 'package:file/memory.dart';
import 'package:flutter_tools/src/base/logger.dart';
import 'package:flutter_tools/src/features.dart';
import 'package:flutter_tools/src/persistent_tool_state.dart';
import 'package:flutter_tools/src/reporting/first_run.dart';
......@@ -16,6 +17,12 @@ void main() {
expect(messenger.licenseTerms, contains('Welcome to Flutter'));
});
testWithoutContext('FirstRunMessenger informs user how to disable animations', () {
final FirstRunMessenger messenger = setUpFirstRunMessenger(redisplayWelcomeMessage: false);
expect(messenger.licenseTerms, contains('flutter config --no-$kCliAnimationsFeatureName'));
});
testWithoutContext('FirstRunMessenger requires redisplay if it has never been run before', () {
final FirstRunMessenger messenger = setUpFirstRunMessenger();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment