Skip to content

Commit 6362c4c

Browse files
committed
Add missing dev deps to @weaviate/test
1 parent 9ecdd69 commit 6362c4c

File tree

7 files changed

+24
-29
lines changed

7 files changed

+24
-29
lines changed

packages/core/package.json

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -49,36 +49,11 @@
4949
"uuid": "^9.0.1"
5050
},
5151
"devDependencies": {
52-
"@babel/core": "^7.20.12",
53-
"@babel/preset-typescript": "^7.18.6",
54-
"@babel/runtime": "^7.20.7",
55-
"@curveball/bodyparser": "0.5.0",
56-
"@curveball/core": "0.20.0",
57-
"@curveball/kernel": "0.20.1",
58-
"@rollup/plugin-babel": "^5.3.1",
59-
"@testcontainers/weaviate": "^10.14.0",
60-
"@types/express": "^4.17.21",
61-
"@types/isomorphic-fetch": "^0.0.36",
6252
"@types/node": "^18.14.0",
6353
"@types/uuid": "^9.0.1",
64-
"@typescript-eslint/eslint-plugin": "^6.21.0",
65-
"@typescript-eslint/parser": "^6.21.0",
66-
"eslint": "^8.35.0",
67-
"eslint-config-prettier": "^8.7.0",
68-
"eslint-plugin-prettier": "^4.2.1",
69-
"express": "^4.19.2",
7054
"grpc-tools": "^1.12.4",
71-
"husky": "^8.0.3",
72-
"lint-staged": "^13.2.0",
7355
"openapi-typescript": "^5.4.1",
74-
"prettier": "^2.8.4",
75-
"prettier-plugin-organize-imports": "^3.2.4",
7656
"protobufjs": "^7.2.6",
77-
"ts-node": "^10.9.2",
78-
"ts-proto": "^1.163.0",
79-
"tsup": "^8.0.2",
80-
"typedoc": "^0.26.0",
81-
"typedoc-plugin-extras": "^3.0.0",
8257
"typescript": "^5.3.3"
8358
},
8459
"lint-staged": {

packages/test/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@
66
"test:watch": "vitest"
77
},
88
"devDependencies": {
9+
"@curveball/bodyparser": "0.5.0",
10+
"@testcontainers/weaviate": "^10.28.0",
11+
"@types/express": "^4.17.23",
12+
"@types/uuid": "^9.0.8",
913
"@weaviate/core": "workspace:^1.0.0",
1014
"@weaviate/node": "workspace:^1.0.0",
1115
"express": "^4.21.2",
1216
"nice-grpc": "^2.1.12",
17+
"uuid": "^9.0.1",
1318
"vitest": "^3.2.4"
1419
}
1520
}

packages/test/src/connection/helpers.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import weaviate from '@weaviate/node';
2-
import { afterAll, beforeAll, describe, expect, it } from 'vitest';
2+
import { describe, expect, it } from 'vitest';
33

44
const WCD_URL = 'https://piblpmmdsiknacjnm1ltla.c1.europe-west3.gcp.weaviate.cloud';
55
const WCD_KEY = 'cy4ua772mBlMdfw3YnclqAWzFhQt0RLIN0sl';

packages/test/src/connection/journey.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Connection from '@weaviate/core/connection';
88

99
import { WeaviateStartUpError } from '@weaviate/core/errors';
1010
import weaviate from '@weaviate/node';
11-
import { afterAll, beforeAll, describe, expect, it, vitest } from 'vitest';
11+
import { describe, expect, it, vitest } from 'vitest';
1212

1313
describe('connection', () => {
1414
it('makes a logged-in request when client host param has trailing slashes', async () => {

packages/test/src/connection/proxy.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import weaviate from '@weaviate/node';
2-
import { afterAll, beforeAll, describe, expect, it } from 'vitest';
2+
import { describe, expect, it } from 'vitest';
33

44
describe('Testing of the client connecting to a proxied Weaviate instance', () => {
55
// Skip because Envoy Proxy in CI is too flaky with strange error:

packages/test/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"composite": true,
5-
"types": ["vitest"],
5+
"types": ["express", "uuid", "vitest"],
66
"strict": true,
77
"esModuleInterop": true,
88
"paths": {

pnpm-lock.yaml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)