@malloydata/db-bigquery 0.0.127-dev240307031210 → 0.0.127-dev240308180053
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/dist/bigquery.spec.js +7 -0
- package/package.json +2 -2
package/dist/bigquery.spec.js
CHANGED
|
@@ -51,6 +51,13 @@ const bigquery_1 = require("@google-cloud/bigquery");
|
|
|
51
51
|
const util = __importStar(require("util"));
|
|
52
52
|
const fs = __importStar(require("fs"));
|
|
53
53
|
const url_1 = require("url");
|
|
54
|
+
const envDatabases = (process.env['MALLOY_DATABASES'] ||
|
|
55
|
+
process.env['MALLOY_DATABASE'] ||
|
|
56
|
+
'bigquery').split(',');
|
|
57
|
+
let describe = globalThis.describe;
|
|
58
|
+
if (!envDatabases.includes('bigquery')) {
|
|
59
|
+
describe = describe.skip;
|
|
60
|
+
}
|
|
54
61
|
describe('db:BigQuery', () => {
|
|
55
62
|
let bq;
|
|
56
63
|
let runtime;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-bigquery",
|
|
3
|
-
"version": "0.0.127-
|
|
3
|
+
"version": "0.0.127-dev240308180053",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@google-cloud/bigquery": "^7.3.0",
|
|
26
26
|
"@google-cloud/common": "^5.0.1",
|
|
27
27
|
"@google-cloud/paginator": "^5.0.0",
|
|
28
|
-
"@malloydata/malloy": "^0.0.127-
|
|
28
|
+
"@malloydata/malloy": "^0.0.127-dev240308180053",
|
|
29
29
|
"gaxios": "^4.2.0"
|
|
30
30
|
}
|
|
31
31
|
}
|