-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update .vscode settings * Update naming convention rule in .eslintrc.json * Add .vscode-test.mjs configuration file * Remove unnecessary entries from .vscodeignore * Update tsconfig.json compiler options * Update package.json scripts * Update devDependencies in package.json * Update devDependencies in package.json * Update Node.js and GitHub Actions versions * Fix import statement for isWsl module * cleanup test folder * Add timeout to mocha configuration * Fix path resolution in resolveTestFilePath function * Update mocha configuration in .vscode-test.mjs * Update Node and Ruby versions in workflows * Add cache dependency path for npm in release and test workflows * Update OS version in test.yaml workflow * Update Ruby version to 2.7 * Update test.yaml to use Ruby version 3.3 and add Windows toolchain * Update test.yaml to use bash shell for running headless tests * debug * debug * debug * Add platform and isWsl logging in HtmlBeautifier * Fix import statement in HtmlBeautifier * Update is-wsl dependency version * remove debug * Update package json * Update package json
- Loading branch information
Showing
13 changed files
with
1,601 additions
and
9,653 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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { defineConfig } from "@vscode/test-cli"; | ||
|
||
export default defineConfig({ | ||
files: "out/test/**/*.test.js", | ||
mocha: { | ||
ui: "tdd", | ||
color: true, | ||
timeout: "10000", | ||
}, | ||
}); |
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,7 +1,8 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint" | ||
] | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"ms-vscode.extension-test-runner" | ||
] | ||
} |
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.