Skip to content

Commit 1b1d804

Browse files
committed
added test config
1 parent 5890edb commit 1b1d804

File tree

24 files changed

+120
-12
lines changed

24 files changed

+120
-12
lines changed

packages/instrumentation-anthropic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"build": "rollup -c",
1111
"lint": "eslint .",
1212
"lint:fix": "eslint . --fix",
13-
"test": "ts-mocha -p tsconfig.json 'test/**/*.test.ts'"
13+
"test": "ts-mocha -p tsconfig.test.json 'test/**/*.test.ts'"
1414
},
1515
"keywords": [
1616
"opentelemetry",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"outDir": "dist",
5+
"rootDir": "."
6+
},
7+
"include": ["src/**/*.ts", "test/**/*.ts"],
8+
"references": []
9+
}

packages/instrumentation-bedrock/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"build": "rollup -c",
1111
"lint": "eslint .",
1212
"lint:fix": "eslint . --fix",
13-
"test": "ts-mocha -p tsconfig.json 'tests/**/*.test.ts' --timeout 20000"
13+
"test": "ts-mocha -p tsconfig.test.json 'tests/**/*.test.ts' --timeout 20000"
1414
},
1515
"keywords": [
1616
"opentelemetry",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"outDir": "dist",
5+
"rootDir": "."
6+
},
7+
"include": ["src/**/*.ts", "tests/**/*.ts"],
8+
"references": []
9+
}

packages/instrumentation-chromadb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"build": "rollup -c",
1111
"lint": "eslint .",
1212
"lint:fix": "eslint . --fix",
13-
"test": "ts-mocha -p tsconfig.json 'tests/**/*.test.ts' --timeout 20000"
13+
"test": "ts-mocha -p tsconfig.test.json 'tests/**/*.test.ts' --timeout 20000"
1414
},
1515
"keywords": [
1616
"opentelemetry",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"outDir": "dist",
5+
"rootDir": "."
6+
},
7+
"include": ["src/**/*.ts", "tests/**/*.ts"],
8+
"references": []
9+
}

packages/instrumentation-cohere/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"build": "rollup -c",
1111
"lint": "eslint .",
1212
"lint:fix": "eslint . --fix",
13-
"test": "ts-mocha -p tsconfig.json 'tests/**/*.test.ts' --timeout 20000"
13+
"test": "ts-mocha -p tsconfig.test.json 'tests/**/*.test.ts' --timeout 20000"
1414
},
1515
"keywords": [
1616
"opentelemetry",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"outDir": "dist",
5+
"rootDir": "."
6+
},
7+
"include": ["src/**/*.ts", "tests/**/*.ts"],
8+
"references": []
9+
}

packages/instrumentation-langchain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"build": "rollup -c",
1111
"lint": "eslint .",
1212
"lint:fix": "eslint . --fix",
13-
"test": "ts-mocha -p tsconfig.json 'test/**/*.test.ts' --timeout 20000"
13+
"test": "ts-mocha -p tsconfig.test.json 'test/**/*.test.ts' --timeout 20000"
1414
},
1515
"keywords": [
1616
"opentelemetry",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"outDir": "dist",
5+
"rootDir": "."
6+
},
7+
"include": ["src/**/*.ts", "test/**/*.ts"],
8+
"references": []
9+
}

0 commit comments

Comments
 (0)