Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-llmz-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
export CLOUD_API_ENDPOINT='https://api.botpress.dev'
export CLOUD_BOT_ID=$bot_id
export CLOUD_PAT=${{ secrets.STAGING_TOKEN_CLOUD_OPS_ACCOUNT }}
pnpm -F llmz run test
pnpm -F llmz run test:e2e
- name: Cleanup
if: ${{ always() }}
Expand Down
3 changes: 2 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"autoAttachChildProcesses": true,
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
"program": "${workspaceRoot}/node_modules/vitest/vitest.mjs",
"args": ["run", "${relativeFile}"],
"args": ["run", "${fileBasename}"],
"cwd": "${fileDirname}",
"smartStep": true,
"console": "integratedTerminal"
},
Expand Down
3 changes: 2 additions & 1 deletion integrations/airtable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"dependencies": {
"@botpress/sdk": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions integrations/airtable/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/anthropic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/anthropic/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/asana/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/asana/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/attio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@botpresshub/attio",
"scripts": {
"check:type": "tsc --noEmit",
"build": "bp add -y && bp build"
"build": "bp add -y && bp build",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/attio/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/bamboohr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/bamboohr/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/bigcommerce-sync/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@botpresshub/bigcommerce",
"scripts": {
"check:type": "tsc --noEmit",
"build": "bp add -y && bp build"
"build": "bp add -y && bp build",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/bigcommerce-sync/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"check:type": "tsc --noEmit",
"check:bplint": "bp lint",
"build": "bp add -y && bp build"
"build": "bp add -y && bp build",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/browser/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/calcom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/calcom/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/calendly/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/calendly/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/canny/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"dependencies": {
"@botpress/client": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion integrations/canny/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": [".botpress/**/*", "definitions/**/*", "src/**/*", "integration.definition.ts"]
"include": [".botpress/**/*", "definitions/**/*", "src/**/*", "*.ts"]
}
2 changes: 2 additions & 0 deletions integrations/canny/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/cerebras/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/cerebras/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/charts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"check:type": "tsc --noEmit",
"check:bplint": "bp lint",
"build": "bp add -y && bp build"
"build": "bp add -y && bp build",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/charts/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"check:type": "tsc --noEmit",
"check:blint": "bp lint",
"generate": "ts-node -T ./openapi.ts ./src/gen",
"build": "bp add -y && bp build"
"build": "bp add -y && bp build",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/chat/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/clickup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"check:type": "tsc --noEmit",
"check:bplint": "bp lint",
"build": "bp add -y && bp build"
"build": "bp add -y && bp build",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/clickup/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/confluence/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"check:bplint": "bp lint",
"check:type": "tsc --noEmit",
"build": "bp add -y && bp build"
"build": "bp add -y && bp build",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/confluence/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/dalle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"check:type": "tsc --noEmit",
"check:bplint": "bp lint",
"version": "bp --version",
"build": "bp add -y && bp build"
"build": "bp add -y && bp build",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/dalle/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/docusign/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion integrations/docusign/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"baseUrl": ".",
"outDir": "dist"
},
"include": [".botpress/**/*", "definitions/**/*", "src/**/*", "integration.definition.ts"]
"include": [".botpress/**/*", "definitions/**/*", "src/**/*", "*.ts"]
}
2 changes: 2 additions & 0 deletions integrations/docusign/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/dropbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:bplint": "bp lint",
"check:type": "tsc --noEmit"
"check:type": "tsc --noEmit",
"test": "vitest --run"
},
"bpDependencies": {
"files-readonly": "../../interfaces/files-readonly"
Expand Down
2 changes: 2 additions & 0 deletions integrations/dropbox/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
2 changes: 1 addition & 1 deletion integrations/email/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"scripts": {
"check:type": "tsc --noEmit",
"build": "bp build",
"test": "vitest"
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/email/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/feature-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/feature-base/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/fireworks-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/fireworks-ai/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/freshchat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"check:bplint": "bp lint",
"build": "bp add -y && bp build",
"deploy": "bp deploy",
"eslint": "eslint ./ --ext .ts --ext .tsx --fix"
"eslint": "eslint ./ --ext .ts --ext .tsx --fix",
"test": "vitest --run"
},
"dependencies": {
"@botpress/client": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions integrations/freshchat/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"dependencies": {
"@botpress/common": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions integrations/github/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/gmail/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"check:format": "prettier --check .",
"fix:format": "prettier --write .",
"check:lint": "eslint ./ --ext .ts --ext .tsx",
"fix:lint": "eslint --fix ./ --ext .ts --ext .tsx"
"fix:lint": "eslint --fix ./ --ext .ts --ext .tsx",
"test": "vitest --run"
},
"dependencies": {
"@botpress/cli": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions integrations/gmail/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/google-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/google-ai/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/googlecalendar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"dependencies": {
"@botpress/client": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions integrations/googlecalendar/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/googledrive/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@botpresshub/googledrive",
"scripts": {
"check:type": "tsc --noEmit",
"build": "bp add -y && bp build"
"build": "bp add -y && bp build",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/googledrive/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
3 changes: 2 additions & 1 deletion integrations/groq/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"scripts": {
"build": "bp add -y && bp build",
"check:type": "tsc --noEmit",
"check:bplint": "bp lint"
"check:bplint": "bp lint",
"test": "vitest --run"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions integrations/groq/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import config from '../../vitest.config'
export default config
Loading
Loading