Skip to content

Commit

Permalink
test: drop regacy legacy version test
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed May 1, 2023
1 parent d26c95d commit 448fb65
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: coactions/setup-xvfb@v1
with:
run: npm run test:latest
- name: Run headless tests - legacy version
uses: coactions/setup-xvfb@v1
with:
run: npm run test:legacy
# - name: Run headless tests - legacy version
# uses: coactions/setup-xvfb@v1
# with:
# run: npm run test:legacy
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,8 @@
"format": "prettier --write \"./**/*.{ts,js}\"",
"pretest": "npm run compile",
"test:specificVersion": " node ./out/test/runSpecificVersionTest.js",
"test:legacy": " node ./out/test/runLegacyTest.js",
"test:latest": " node ./out/test/runLatestTest.js",
"test": "npm run test:specificVersion && npm run test:latest && npm run test:legacy",
"test": "npm run test:specificVersion && npm run test:latest",
"package": "vsce package ./node_modules/.bin/vsce package"
},
"devDependencies": {
Expand Down
3 changes: 3 additions & 0 deletions src/test/runLegacyTest.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@

/*
import * as path from 'path';
import {
runTests,
Expand Down Expand Up @@ -27,3 +29,4 @@ async function main() {
}
main();
*/

0 comments on commit 448fb65

Please sign in to comment.