Skip to content

Commit 901006c

Browse files
ci: Fix test invocation (#390)
During the rebase of #366, I accidentally duplicated the `test` key inside the `scripts` in `package.json`. There was no warning whatsoever and CI was still green, but didn't actually run the `vscode-test` tests. This commit fixes the mishap Co-authored-by: Cameron Martin <cameronmartin123@gmail.com>
1 parent 1d3ac18 commit 901006c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,6 @@
462462
"check-lint": "eslint .",
463463
"compile": "./scripts/build.sh",
464464
"pretest": "./scripts/build.sh",
465-
"test": "vscode-test",
466465
"format-check": "prettier --check .",
467466
"format-fix": "prettier --write .",
468467
"test": "./scripts/test.sh",

scripts/test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ js-yaml syntaxes/bazelrc.tmLanguage.yaml > syntaxes/bazelrc.tmLanguage.json
2525

2626
# Regression test for bazelrc grammar
2727
vscode-tmgrammar-snap "$@" test/example.bazelrc
28+
29+
# Java Script tests
30+
vscode-test

0 commit comments

Comments
 (0)