@cubejs-backend/testing-drivers 0.32.28 → 0.32.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +21 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cubejs-backend/testing-drivers",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.30",
|
|
4
4
|
"description": "Cube.js drivers test suite",
|
|
5
5
|
"author": "Cube Dev, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
"athena-driver": "jest --forceExit --runInBand --verbose -i dist/test/athena-driver.test.js",
|
|
17
17
|
"athena-core": "jest --forceExit --runInBand --verbose -i dist/test/athena-core.test.js",
|
|
18
18
|
"athena-full": "jest --forceExit --runInBand --verbose -i dist/test/athena-full.test.js",
|
|
19
|
+
"bigquery-driver": "jest --forceExit --runInBand --verbose -i dist/test/bigquery-driver.test.js",
|
|
20
|
+
"bigquery-core": "jest --forceExit --runInBand --verbose -i dist/test/bigquery-core.test.js",
|
|
21
|
+
"bigquery-full": "jest --forceExit --runInBand --verbose -i dist/test/bigquery-full.test.js",
|
|
19
22
|
"clickhouse-driver": "jest --forceExit --runInBand --verbose -i dist/test/clickhouse-driver.test.js",
|
|
20
23
|
"clickhouse-core": "jest --forceExit --runInBand --verbose -i dist/test/clickhouse-core.test.js",
|
|
21
24
|
"clickhouse-full": "jest --forceExit --runInBand --verbose -i dist/test/clickhouse-full.test.js",
|
|
@@ -31,31 +34,35 @@
|
|
|
31
34
|
"postgres-driver": "jest --forceExit --runInBand --verbose -i dist/test/postgres-driver.test.js",
|
|
32
35
|
"postgres-core": "jest --forceExit --runInBand --verbose -i dist/test/postgres-core.test.js",
|
|
33
36
|
"postgres-full": "jest --forceExit --runInBand --verbose -i dist/test/postgres-full.test.js",
|
|
34
|
-
"
|
|
37
|
+
"snowflake-driver": "jest --forceExit --runInBand --verbose -i dist/test/snowflake-driver.test.js",
|
|
38
|
+
"snowflake-core": "jest --forceExit --runInBand --verbose -i dist/test/snowflake-core.test.js",
|
|
39
|
+
"snowflake-full": "jest --forceExit --runInBand --verbose -i dist/test/snowflake-full.test.js",
|
|
40
|
+
"tst": "clear && yarn tsc && yarn bigquery-core"
|
|
35
41
|
},
|
|
36
42
|
"files": [
|
|
37
43
|
"dist/src"
|
|
38
44
|
],
|
|
39
45
|
"dependencies": {
|
|
40
|
-
"@cubejs-backend/athena-driver": "^0.32.
|
|
41
|
-
"@cubejs-backend/base-driver": "^0.32.
|
|
42
|
-
"@cubejs-backend/cubestore-driver": "^0.32.
|
|
46
|
+
"@cubejs-backend/athena-driver": "^0.32.30",
|
|
47
|
+
"@cubejs-backend/base-driver": "^0.32.30",
|
|
48
|
+
"@cubejs-backend/cubestore-driver": "^0.32.30",
|
|
43
49
|
"@cubejs-backend/dotenv": "^9.0.2",
|
|
44
50
|
"@cubejs-backend/linter": "^0.32.28",
|
|
45
|
-
"@cubejs-backend/postgres-driver": "^0.32.
|
|
46
|
-
"@cubejs-backend/query-orchestrator": "^0.32.
|
|
47
|
-
"@cubejs-backend/redshift-driver": "^0.32.
|
|
48
|
-
"@cubejs-backend/server-core": "^0.32.
|
|
49
|
-
"@cubejs-backend/shared": "^0.32.
|
|
50
|
-
"@cubejs-backend/testing-shared": "^0.32.
|
|
51
|
-
"@cubejs-client/core": "^0.32.
|
|
52
|
-
"@cubejs-client/ws-transport": "^0.32.
|
|
51
|
+
"@cubejs-backend/postgres-driver": "^0.32.30",
|
|
52
|
+
"@cubejs-backend/query-orchestrator": "^0.32.30",
|
|
53
|
+
"@cubejs-backend/redshift-driver": "^0.32.30",
|
|
54
|
+
"@cubejs-backend/server-core": "^0.32.30",
|
|
55
|
+
"@cubejs-backend/shared": "^0.32.30",
|
|
56
|
+
"@cubejs-backend/testing-shared": "^0.32.30",
|
|
57
|
+
"@cubejs-client/core": "^0.32.30",
|
|
58
|
+
"@cubejs-client/ws-transport": "^0.32.30",
|
|
53
59
|
"@jest/globals": "^26.6.2",
|
|
54
60
|
"@types/jest": "^26.0.22",
|
|
55
61
|
"@types/node": "^14",
|
|
56
62
|
"dotenv": "^16.0.3",
|
|
57
63
|
"fs-extra": "^11.1.1",
|
|
58
64
|
"jest": "^26.6.3",
|
|
65
|
+
"jsonwebtoken": "^8.5.1",
|
|
59
66
|
"ramda": "^0.28.0",
|
|
60
67
|
"testcontainers": "^9.3.0",
|
|
61
68
|
"typescript": "~4.9.5",
|
|
@@ -78,5 +85,5 @@
|
|
|
78
85
|
"eslintConfig": {
|
|
79
86
|
"extends": "../cubejs-linter"
|
|
80
87
|
},
|
|
81
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "71afde6187516487d1c38294aae9f494c140fb4a"
|
|
82
89
|
}
|