remove period from URL so that it opens correctly in vscode (#43200)

This commit is contained in:
Jonah Williams 2019-10-21 16:43:11 -07:00 committed by GitHub
parent ce2d8ace2f
commit 6db4c44da8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -128,7 +128,7 @@ class ResidentWebRunner extends ResidentRunner {
);
printStatus('Warning: Flutter\'s support for web development is not stable yet and hasn\'t');
printStatus('been thoroughly tested in production environments.');
printStatus('For more information see https://flutter.dev/web.');
printStatus('For more information see https://flutter.dev/web');
printStatus('');
printStatus(message);
const String quitMessage = 'To quit, press "q".';

View file

@ -301,6 +301,8 @@ void main() {
final BufferLogger bufferLogger = logger;
expect(bufferLogger.statusText, contains('Warning'));
expect(bufferLogger.statusText, contains('https://flutter.dev/web'));
expect(bufferLogger.statusText, isNot(contains('https://flutter.dev/web.')));
}));
test('debugDumpApp', () => testbed.run(() async {