You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Show quickpicks if there are multiple runtime matches for targetFramework (#4165)
* Reverse list
* change to quickpicks
* add test
* remove
* Add another test
* remove
* update comment
* update again
* see if tests work
* delete
* add
// Exclude .git because the test workspace folders are already inside a git repo so we don't do git init.
97
+
validateOptions.excludedPaths?.push('.git');
98
+
awaitvalidateProject(folderPath,validateOptions);
99
+
});
100
+
101
+
// Intentionally pass a version (8) that hasn't been specified in targetFramework (6 & 7) to verify it isn't a possible pick. In the correct case (when 8 isn't a pick) we throw an error. api.createFunction swallows the error and returns undefined.
102
+
// In the incorrect case (when 8 is a pick) the test fails since the 2 provided test inputs have already been used, but there are more prompts.
103
+
test('createFunction with language not in targetFramework',async()=>{
0 commit comments