-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20763 from Microsoft/vfs
Update harness to use single robust virtual file system for tests.
- Loading branch information
Showing
62 changed files
with
5,678 additions
and
2,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
// Available variables which can be used inside of strings. | ||
// ${workspaceRoot}: the root folder of the team | ||
// ${file}: the current opened file | ||
// ${fileBasename}: the current opened file's basename | ||
// ${fileDirname}: the current opened file's dirname | ||
// ${fileExtname}: the current opened file's extension | ||
// ${cwd}: the current working directory of the spawned process | ||
{ | ||
"version": "0.1.0", | ||
"command": "gulp", | ||
"isShellCommand": true, | ||
"showOutput": "silent", | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"taskName": "local", | ||
"isBuildCommand": true, | ||
"showOutput": "silent", | ||
"problemMatcher": [ | ||
"$tsc" | ||
] | ||
"type": "shell", | ||
"identifier": "local", | ||
"label": "gulp: local", | ||
"command": "gulp", | ||
"args": ["local"], | ||
"group": { "kind": "build", "isDefault": true }, | ||
"problemMatcher": ["$gulp-tsc"] | ||
}, | ||
{ | ||
"taskName": "tests", | ||
"showOutput": "silent", | ||
"problemMatcher": [ | ||
"$tsc" | ||
] | ||
"type": "shell", | ||
"identifier": "tsc", | ||
"label": "gulp: tsc", | ||
"command": "gulp", | ||
"args": ["tsc"], | ||
"group": "build", | ||
"problemMatcher": ["$gulp-tsc"] | ||
}, | ||
{ | ||
"type": "shell", | ||
"identifier": "tests", | ||
"label": "gulp: tests", | ||
"command": "gulp", | ||
"args": ["tests"], | ||
"group": "build", | ||
"problemMatcher": ["$gulp-tsc"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.