-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to builtin authentication provider & remove Configure Pipelin…
…e support (#595) * Remove Azure Accounts dependency & delete configure flow * Don't bring in a new package for one API call * Only run MSA logic on MSAs * Account for the non-MSAL case * Further remove references to Configure Pipeline * Remove leftover comment * Use modern versions of vsce * Bump compilation target VS Code 1.82/Node 18 supports all the way up to ES2022. * Also remove uuid dependency * Switch to @vscode/test-cli * Provide a fast path for the single org scenario And use clearSessionPreference when the wrong account is used * Remove unused telemetry keys * Add user agent info * Add Extension Test Runner as a recommended extension
- Loading branch information
Showing
58 changed files
with
2,433 additions
and
5,829 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
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,3 +1,4 @@ | ||
coverage | ||
dist | ||
out | ||
node_modules | ||
|
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// @ts-check | ||
|
||
import { defineConfig } from '@vscode/test-cli'; | ||
import path from 'path'; | ||
|
||
export default defineConfig({ | ||
files: 'out/test/**/*.test.js', | ||
workspaceFolder: path.join(import.meta.dirname, 'src', 'test', 'workspace'), | ||
mocha: { | ||
timeout: 100000, | ||
}, | ||
coverage: { | ||
reporter: ['cobertura', 'text', 'html'], | ||
output: './coverage', | ||
} | ||
}); |
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.