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 .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["@examples/*", "@mi8y/cds-langgraph-integration-tests"]
"ignore": ["@examples/*", "@mi8y/integration-tests"]
}
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,16 @@ jobs:
- name: "Integration tests: Install test dependencies"
shell: bash
run: |
cd packages/cds-langgraph-integration-tests
cd packages/integration-tests
pnpm add @sap/cds@${{ matrix.cap-version[0] }}
pnpm add -D @cap-js/sqlite@${{ matrix.cap-version[1] }} @cap-js/cds-test@${{ matrix.cap-version[2] }} @sap/cds-dk@${{ matrix.cap-version[0] }}
pnpm exec cds version --info

- name: "Integration tests:Run LangGraph persistence add commands"
shell: bash
run: |
cd packages/cds-langgraph-integration-tests
export CDS_ROOT="$GITHUB_WORKSPACE/packages/cds-langgraph-integration-tests"
cd packages/integration-tests
export CDS_ROOT="$GITHUB_WORKSPACE/packages/integration-tests"
pnpm exec cds add langgraph-checkpointer
pnpm exec cds add langgraph-memorystore

Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This is a turbo-based monorepo containing CDS plugins for building production-re
│ ├── cds-agent-utils
│ │ ├── AGENTS.md <- Read this for common utils
│ │ └── ...
│ ├── cds-langgraph-integration-tests
│ ├── integration-tests
│ │ ├── AGENTS.md <- Read this for integration test setup
│ │ └── ...
│ ├── cds-langgraph-persistence
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"scripts": {
"build": "turbo run build",
"test": "vitest run --coverage",
"test:unit": "vitest run --coverage --project='!cds-langgraph-integration-tests'",
"test:integration": "pnpm --filter @mi8y/cds-langgraph-integration-tests start",
"test:unit": "vitest run --coverage --project='!integration-tests'",
"test:integration": "pnpm --filter @mi8y/integration-tests start",
"lint": "turbo run lint",
"lint:check": "turbo run lint:check",
"clean": "turbo run clean && rm -rf node_modules coverage .turbo",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@mi8y/cds-langgraph-integration-tests",
"name": "@mi8y/integration-tests",
"version": "1.0.0",
"type": "module",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async function cleanup() {

describe("CDS Plugin Integration", () => {
cds.root = path.join(import.meta.dirname, "../");
const { expect } = cds.test("@mi8y/cds-langgraph-integration-tests");
const { expect } = cds.test("@mi8y/integration-tests");

// ── CDS Plugin — Model Loading ──────────────────────────────────────

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { defineConfig } from "vite";
export default defineConfig({
// Testing Configuration (Vitest)
test: {
name: "cds-langgraph-integration-tests",
name: "integration-tests",
globals: true,
root: import.meta.dirname,
environment: "node",
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading