@cubejs-backend/testing 1.3.15 → 1.3.17
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.
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
cube(`Orders`, {
|
|
2
2
|
sql: `
|
|
3
|
-
select 1 as id, 100 as amount, 'new' status, '2024-01-01'::timestamptz created_at
|
|
3
|
+
select 1 as id, 100 as amount, 'new' status, '2024-01-01'::timestamptz created_at, '2025-01-01'::timestamptz updated_at
|
|
4
4
|
UNION ALL
|
|
5
|
-
select 2 as id, 200 as amount, 'new' status, '2024-01-02'::timestamptz created_at
|
|
5
|
+
select 2 as id, 200 as amount, 'new' status, '2024-01-02'::timestamptz created_at, '2025-01-02'::timestamptz updated_at
|
|
6
6
|
UNION ALL
|
|
7
|
-
select 3 as id, 300 as amount, 'processed' status, '2024-01-03'::timestamptz created_at
|
|
7
|
+
select 3 as id, 300 as amount, 'processed' status, '2024-01-03'::timestamptz created_at, '2025-01-03'::timestamptz updated_at
|
|
8
8
|
UNION ALL
|
|
9
|
-
select 4 as id, 500 as amount, 'processed' status, '2024-01-04'::timestamptz created_at
|
|
9
|
+
select 4 as id, 500 as amount, 'processed' status, '2024-01-04'::timestamptz created_at, '2025-01-04'::timestamptz updated_at
|
|
10
10
|
UNION ALL
|
|
11
|
-
select 5 as id, 600 as amount, 'shipped' status, '2024-01-05'::timestamptz created_at
|
|
11
|
+
select 5 as id, 600 as amount, 'shipped' status, '2024-01-05'::timestamptz created_at, '2025-01-05'::timestamptz updated_at
|
|
12
12
|
`,
|
|
13
13
|
joins: {
|
|
14
14
|
OrderItems: {
|
|
@@ -122,6 +122,11 @@ cube(`Orders`, {
|
|
|
122
122
|
createdAt: {
|
|
123
123
|
sql: `created_at`,
|
|
124
124
|
type: `time`
|
|
125
|
+
},
|
|
126
|
+
|
|
127
|
+
updatedAt: {
|
|
128
|
+
sql: `updated_at`,
|
|
129
|
+
type: `time`
|
|
125
130
|
}
|
|
126
131
|
},
|
|
127
132
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cubejs-backend/testing",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.17",
|
|
4
4
|
"description": "Cube.js e2e tests",
|
|
5
5
|
"author": "Cube Dev, Inc.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -94,15 +94,15 @@
|
|
|
94
94
|
"birdbox-fixtures"
|
|
95
95
|
],
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"@cubejs-backend/cubestore-driver": "1.3.
|
|
97
|
+
"@cubejs-backend/cubestore-driver": "1.3.17",
|
|
98
98
|
"@cubejs-backend/dotenv": "^9.0.2",
|
|
99
|
-
"@cubejs-backend/ksql-driver": "1.3.
|
|
100
|
-
"@cubejs-backend/postgres-driver": "1.3.
|
|
101
|
-
"@cubejs-backend/query-orchestrator": "1.3.
|
|
102
|
-
"@cubejs-backend/schema-compiler": "1.3.
|
|
103
|
-
"@cubejs-backend/shared": "1.3.
|
|
104
|
-
"@cubejs-backend/testing-shared": "1.3.
|
|
105
|
-
"@cubejs-client/ws-transport": "1.3.
|
|
99
|
+
"@cubejs-backend/ksql-driver": "1.3.17",
|
|
100
|
+
"@cubejs-backend/postgres-driver": "1.3.17",
|
|
101
|
+
"@cubejs-backend/query-orchestrator": "1.3.17",
|
|
102
|
+
"@cubejs-backend/schema-compiler": "1.3.17",
|
|
103
|
+
"@cubejs-backend/shared": "1.3.17",
|
|
104
|
+
"@cubejs-backend/testing-shared": "1.3.17",
|
|
105
|
+
"@cubejs-client/ws-transport": "1.3.17",
|
|
106
106
|
"dedent": "^0.7.0",
|
|
107
107
|
"fs-extra": "^8.1.0",
|
|
108
108
|
"http-proxy": "^1.18.1",
|
|
@@ -113,8 +113,8 @@
|
|
|
113
113
|
},
|
|
114
114
|
"devDependencies": {
|
|
115
115
|
"@4tw/cypress-drag-drop": "^1.6.0",
|
|
116
|
-
"@cubejs-backend/linter": "1.3.
|
|
117
|
-
"@cubejs-client/core": "1.3.
|
|
116
|
+
"@cubejs-backend/linter": "1.3.17",
|
|
117
|
+
"@cubejs-client/core": "1.3.17",
|
|
118
118
|
"@jest/globals": "^29",
|
|
119
119
|
"@types/dedent": "^0.7.0",
|
|
120
120
|
"@types/http-proxy": "^1.17.5",
|
|
@@ -140,5 +140,5 @@
|
|
|
140
140
|
"eslintConfig": {
|
|
141
141
|
"extends": "../cubejs-linter"
|
|
142
142
|
},
|
|
143
|
-
"gitHead": "
|
|
143
|
+
"gitHead": "d7d88d1dd28bdf983762c1b483a8037920235660"
|
|
144
144
|
}
|