@malloydata/malloy-tests 0.0.181-dev240907212110 → 0.0.181-dev240910201932
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
CHANGED
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@jest/globals": "^29.4.3",
|
|
24
|
-
"@malloydata/db-bigquery": "^0.0.181-
|
|
25
|
-
"@malloydata/db-duckdb": "^0.0.181-
|
|
26
|
-
"@malloydata/db-postgres": "^0.0.181-
|
|
27
|
-
"@malloydata/db-snowflake": "^0.0.181-
|
|
28
|
-
"@malloydata/db-trino": "^0.0.181-
|
|
29
|
-
"@malloydata/malloy": "^0.0.181-
|
|
30
|
-
"@malloydata/render": "^0.0.181-
|
|
24
|
+
"@malloydata/db-bigquery": "^0.0.181-dev240910201932",
|
|
25
|
+
"@malloydata/db-duckdb": "^0.0.181-dev240910201932",
|
|
26
|
+
"@malloydata/db-postgres": "^0.0.181-dev240910201932",
|
|
27
|
+
"@malloydata/db-snowflake": "^0.0.181-dev240910201932",
|
|
28
|
+
"@malloydata/db-trino": "^0.0.181-dev240910201932",
|
|
29
|
+
"@malloydata/malloy": "^0.0.181-dev240910201932",
|
|
30
|
+
"@malloydata/render": "^0.0.181-dev240910201932",
|
|
31
31
|
"jsdom": "^22.1.0",
|
|
32
32
|
"luxon": "^2.4.0",
|
|
33
33
|
"madge": "^6.0.0"
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"@types/jsdom": "^21.1.1",
|
|
37
37
|
"@types/luxon": "^2.4.0"
|
|
38
38
|
},
|
|
39
|
-
"version": "0.0.181-
|
|
39
|
+
"version": "0.0.181-dev240910201932"
|
|
40
40
|
}
|
package/src/render/drill.spec.ts
CHANGED
|
@@ -67,6 +67,11 @@ describe('drill query', () => {
|
|
|
67
67
|
query: by_origin is flights -> by_origin
|
|
68
68
|
query: no_filter is flights -> no_filter
|
|
69
69
|
`;
|
|
70
|
+
|
|
71
|
+
beforeEach(() => {
|
|
72
|
+
jest.spyOn(console, 'warn').mockImplementation(() => {});
|
|
73
|
+
});
|
|
74
|
+
|
|
70
75
|
test('can handle joined-in table fields', async () => {
|
|
71
76
|
const result = duckdb
|
|
72
77
|
.loadModel(model)
|
|
@@ -62,6 +62,10 @@ const duckdb = runtimeFor('duckdb');
|
|
|
62
62
|
describe('rendering results', () => {
|
|
63
63
|
const runtimes = new RuntimeList(databases);
|
|
64
64
|
|
|
65
|
+
beforeEach(() => {
|
|
66
|
+
jest.spyOn(console, 'warn').mockImplementation(() => {});
|
|
67
|
+
});
|
|
68
|
+
|
|
65
69
|
afterAll(async () => {
|
|
66
70
|
await runtimes.closeAll();
|
|
67
71
|
});
|