Theme tests as extension test

This commit is contained in:
Martin Aeschlimann
2016-04-06 16:39:00 +02:00
parent 4d1a9fe47b
commit 24dfa08f6f
18 changed files with 3399 additions and 87 deletions

View File

@@ -13,6 +13,17 @@
"sourceMaps": true,
"outDir": "${workspaceRoot}/client/out",
"preLaunchTask": "npm"
}
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/client/out/test" ],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/client/out/test",
"preLaunchTask": "npm"
}
]
}