-
Notifications
You must be signed in to change notification settings - Fork 340
Closed
Labels
in flutterRelates to running Flutter appsRelates to running Flutter appsin testingRelates to test execution of Dart/Flutter tests for end usersRelates to test execution of Dart/Flutter tests for end usersis bugon windows
Milestone
Description
Hi
vscode is having a problem running tests with a multi-line string description.
How to reproduce:
This will pass:
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('''test''', (tester) async {});
}This will not pass:
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('''
test
''', (tester) async {});
}keep in mind that the later test will pass if run through void main.
[√] VS Code (version 1.67.2)
• VS Code at C:\Users\m_ben\AppData\Local\Programs\Microsoft VS Code
• Flutter extension version 3.42.0
Metadata
Metadata
Assignees
Labels
in flutterRelates to running Flutter appsRelates to running Flutter appsin testingRelates to test execution of Dart/Flutter tests for end usersRelates to test execution of Dart/Flutter tests for end usersis bugon windows