chore(llms): gate live model tests behind test:live (#610)

* chore(llms): gate live model tests behind test:live

Keep *.live.test.ts out of npm test so local CI stays fast; run them
explicitly via npm run test:live when checking provider compatibility.

* chore: skill gh permission
This commit is contained in:
Simon
2026-07-10 00:48:52 -07:00
committed by GitHub
parent 4c76a5f1d2
commit d5c994708c
6 changed files with 35 additions and 9 deletions
+2 -1
View File
@@ -43,7 +43,8 @@
"homepage": "https://alibaba.github.io/page-agent/",
"scripts": {
"build": "vite build",
"test": "vitest run",
"test": "vitest run --project llms",
"test:live": "vitest run --project llms:live",
"prepublishOnly": "node ../../scripts/pre-publish.js",
"postpublish": "node ../../scripts/post-publish.js"
},