@malloydata/malloy-tests 0.0.176-dev240826160725 → 0.0.176-dev240827180133

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.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/src/runtimes.ts +5 -1
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.176-dev240826160725",
25
- "@malloydata/db-duckdb": "^0.0.176-dev240826160725",
26
- "@malloydata/db-postgres": "^0.0.176-dev240826160725",
27
- "@malloydata/db-snowflake": "^0.0.176-dev240826160725",
28
- "@malloydata/db-trino": "^0.0.176-dev240826160725",
29
- "@malloydata/malloy": "^0.0.176-dev240826160725",
30
- "@malloydata/render": "^0.0.176-dev240826160725",
24
+ "@malloydata/db-bigquery": "^0.0.176-dev240827180133",
25
+ "@malloydata/db-duckdb": "^0.0.176-dev240827180133",
26
+ "@malloydata/db-postgres": "^0.0.176-dev240827180133",
27
+ "@malloydata/db-snowflake": "^0.0.176-dev240827180133",
28
+ "@malloydata/db-trino": "^0.0.176-dev240827180133",
29
+ "@malloydata/malloy": "^0.0.176-dev240827180133",
30
+ "@malloydata/render": "^0.0.176-dev240827180133",
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.176-dev240826160725"
39
+ "version": "0.0.176-dev240827180133"
40
40
  }
package/src/runtimes.ts CHANGED
@@ -155,7 +155,11 @@ export function runtimeFor(dbName: string): SingleConnectionRuntime {
155
155
  );
156
156
  break;
157
157
  case 'motherduck':
158
- connection = new DuckDBTestConnection(dbName, 'md:my_db');
158
+ connection = new DuckDBTestConnection({
159
+ name: dbName,
160
+ databasePath: 'md:my_db',
161
+ motherDuckToken: process.env['TEST_MD_TOKEN'],
162
+ });
159
163
  break;
160
164
  case 'snowflake':
161
165
  {