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
1 change: 1 addition & 0 deletions e2e/vitest.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { E2E_TAGS } from "./helpers/tags";

export default defineConfig({
test: {
reporters: ["default"],
include: ["scenarios/**/*.test.ts"],
// We run the scenarios in the hooks.
hookTimeout: 120_000,
Expand Down
1 change: 1 addition & 0 deletions integrations/browser-js/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
reporters: ["default"],
include: ["tests/**/*.test.ts", "src/**/*.test.ts"],
},
});
1 change: 1 addition & 0 deletions integrations/langchain-js/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
reporters: ["default"],
setupFiles: ["./src/test/setup.ts"],
include: ["tests/**/*.test.ts", "src/**/*.test.ts"],
},
Expand Down
1 change: 1 addition & 0 deletions integrations/openai-agents-js/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
reporters: ["default"],
include: ["tests/**/*.test.ts", "src/**/*.test.ts"],
// Add any specific test configuration if needed
},
Expand Down
1 change: 1 addition & 0 deletions integrations/otel-js/otel-v1/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default defineConfig({
}
: {},
test: {
reporters: ["default"],
include: ["tests/**/*.test.ts", "src/**/*.test.ts"],
},
});
1 change: 1 addition & 0 deletions integrations/otel-js/otel-v2/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default defineConfig({
}
: {},
test: {
reporters: ["default"],
include: ["tests/**/*.test.ts", "src/**/*.test.ts"],
},
});
1 change: 1 addition & 0 deletions integrations/otel-js/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
reporters: ["default"],
include: ["tests/**/*.test.ts", "src/**/*.test.ts"],
},
});
1 change: 1 addition & 0 deletions integrations/templates-nunjucks/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
reporters: ["default"],
include: ["tests/**/*.test.ts", "src/**/*.test.ts"],
},
});
1 change: 1 addition & 0 deletions integrations/temporal-js/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
reporters: ["default"],
include: ["tests/**/*.test.ts", "src/**/*.test.ts"],
},
});
1 change: 1 addition & 0 deletions integrations/vercel-ai-sdk/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
reporters: ["default"],
include: ["tests/**/*.test.ts", "src/**/*.test.ts"],
},
});
1 change: 1 addition & 0 deletions js/examples/vitest/vitest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
reporters: ["default"],
include: ["**/*.test.ts", "**/*.eval.ts"],
exclude: ["**/node_modules/**", "**/dist/**"],
testTimeout: 15000,
Expand Down
1 change: 1 addition & 0 deletions js/src/wrappers/ai-sdk/tests/v5/vitest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const config = {
},
},
test: {
reporters: ["default"],
include: ["../../ai-sdk.test.ts", "./ai-sdk.v5.test.ts"],
exclude: ["**/node_modules/**", "**/dist/**"],
},
Expand Down
1 change: 1 addition & 0 deletions js/src/wrappers/ai-sdk/tests/v6/vitest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const config = {
},
},
test: {
reporters: ["default"],
include: ["../../ai-sdk.test.ts", "./ai-sdk.v6.test.ts"],
exclude: ["**/node_modules/**", "**/dist/**"],
},
Expand Down
1 change: 1 addition & 0 deletions js/src/wrappers/claude-agent-sdk/vitest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const config = {
exclude: ["vendor/**", "**/vendor/**"],
},
test: {
reporters: ["default"],
exclude: [
// Default vitest exclusions
"**/node_modules/**",
Expand Down
7 changes: 7 additions & 0 deletions js/src/wrappers/vitest/vitest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
reporters: ["default"],
},
});
1 change: 1 addition & 0 deletions js/vitest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const config = {
exclude: ["vendor/**"],
},
test: {
reporters: ["default"],
exclude: [
// Default vitest exclusions
"**/node_modules/**",
Expand Down
Loading