mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Add a convenience test task for vscode (#9570)
This commit is contained in:
parent
e2cd78358f
commit
f645245ffd
1
packages/flutter/.gitignore
vendored
1
packages/flutter/.gitignore
vendored
@ -3,3 +3,4 @@
|
||||
pubspec.lock
|
||||
doc/api/
|
||||
coverage/
|
||||
.vscode
|
||||
|
||||
17
packages/flutter/.vscode/tasks.json
vendored
Normal file
17
packages/flutter/.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"version": "0.1.0",
|
||||
"command": "flutter",
|
||||
"args": [],
|
||||
"showOutput": "always",
|
||||
"echoCommand": true,
|
||||
"tasks": [
|
||||
{
|
||||
// Assign key binding to workbench.action.tasks.test to quickly run
|
||||
// the currently open test.
|
||||
"taskName": "test",
|
||||
"isTestCommand": true,
|
||||
"isShellCommand": true,
|
||||
"args": ["${file}"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user