test: добавить площадку интеграционного тестирования

- добавлены consumer fixtures для React и Next.js
- добавлены typecheck, production build и браузерные smoke-тесты
- добавлена интеграционная проверка в CI
This commit is contained in:
2026-07-13 20:08:31 +03:00
parent 7992adc9d3
commit 632b450c8b
130 changed files with 26424 additions and 0 deletions

View File

@@ -45,6 +45,11 @@
"dev": "tsup --watch",
"test": "tsup && node --test test/*.test.mjs",
"typecheck": "tsc --noEmit",
"integration:install": "npm ci --prefix integration",
"integration:generate": "npm run build:package && npm run generate --prefix integration",
"integration:build": "npm run build:package && npm run build --prefix integration",
"integration:test": "npm run test:e2e --prefix integration",
"integration:verify": "npm run build:package && npm run verify --prefix integration",
"verify": "npm run check:skill && npm run typecheck && npm test",
"prepack": "npm run verify && npm run build"
},