We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdef2e0 commit 79fa08fCopy full SHA for 79fa08f
packages/cubejs-testing-drivers/test/databricks-jdbc-full.test.ts
@@ -44,9 +44,19 @@ async function f() {
44
console.log('qRes', qRes);
45
}
46
47
-f().catch(e => console.log('driver test query failed', e));
+f()
48
+ .then(
49
+ () => {
50
+ console.log('driver test query succ');
51
+ process.exit(0);
52
+ },
53
+ e => {
54
+ console.log('driver test query failed', e);
55
+ process.exit(1);
56
+ }
57
+ );
58
-testQueries('databricks-jdbc', {
- includeIncrementalSchemaSuite: true,
- includeHLLSuite: true,
-});
59
+// testQueries('databricks-jdbc', {
60
+// includeIncrementalSchemaSuite: true,
61
+// includeHLLSuite: true,
62
+// });
0 commit comments