From 86e9a445b9e6dba1c15d607d5e50f74c195f39e6 Mon Sep 17 00:00:00 2001 From: Adrian Vogelsgesang Date: Thu, 2 May 2024 15:26:22 +0200 Subject: [PATCH] ci: Fix test invocation 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 --- package.json | 1 - scripts/test.sh | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ec0ccdef..5e598b62 100644 --- a/package.json +++ b/package.json @@ -462,7 +462,6 @@ "check-lint": "eslint .", "compile": "./scripts/build.sh", "pretest": "./scripts/build.sh", - "test": "vscode-test", "format-check": "prettier --check .", "format-fix": "prettier --write .", "test": "./scripts/test.sh", diff --git a/scripts/test.sh b/scripts/test.sh index c89f5e57..b586e603 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -25,3 +25,6 @@ js-yaml syntaxes/bazelrc.tmLanguage.yaml > syntaxes/bazelrc.tmLanguage.json # Regression test for bazelrc grammar vscode-tmgrammar-snap "$@" test/example.bazelrc + +# Java Script tests +vscode-test