Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run "test" task actually runs "build" task #28895

Closed
bruno-brant opened this issue Jun 16, 2017 · 0 comments
Closed

Run "test" task actually runs "build" task #28895

bruno-brant opened this issue Jun 16, 2017 · 0 comments
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug tasks Task system issues verified Verification succeeded
Milestone

Comments

@bruno-brant
Copy link
Contributor

bruno-brant commented Jun 16, 2017

  • VSCode Version: 1.14.0-insider
  • OS Version: Microsoft Windows [Version 10.0.15063]

Steps to Reproduce:

  1. ctrl+shift+p, "Tasks: run test task"

Expected to run gulp test, actually ran gulp build.

tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "command": "gulp",
    "isShellCommand": true,
    "args": [
        // "--no-color"
    ],
    "tasks": [
        {
            "taskName": "build",
            "args": [],
            "isBuildCommand": true,
            "problemMatcher": [
                "$tsc",
                "$tslint5"
            ]
        },
        {
            "taskName": "test",
            "args": [],
            "isTestCommand": true,
            "problemMatcher": [
                "$tsc",
                "$tslint5"
            ]
        }
    ]
}
@vscodebot vscodebot bot added the insiders label Jun 16, 2017
@ramya-rao-a ramya-rao-a added the tasks Task system issues label Jun 17, 2017
@dbaeumer dbaeumer added this to the June 2017 milestone Jun 19, 2017
@dbaeumer dbaeumer added the bug Issue identified by VS Code Team member as probable bug label Jun 19, 2017
@michelkaporin michelkaporin added the verified Verification succeeded label Jun 29, 2017
@vscodebot vscodebot bot locked and limited conversation to collaborators Nov 18, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug tasks Task system issues verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

4 participants