Skip to content

Commit 79fa08f

Browse files
committed
[DO NOT MERGE] more debug from node
1 parent cdef2e0 commit 79fa08f

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

packages/cubejs-testing-drivers/test/databricks-jdbc-full.test.ts

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,19 @@ async function f() {
4444
console.log('qRes', qRes);
4545
}
4646

47-
f().catch(e => console.log('driver test query failed', e));
47+
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+
);
4858

49-
testQueries('databricks-jdbc', {
50-
includeIncrementalSchemaSuite: true,
51-
includeHLLSuite: true,
52-
});
59+
// testQueries('databricks-jdbc', {
60+
// includeIncrementalSchemaSuite: true,
61+
// includeHLLSuite: true,
62+
// });

0 commit comments

Comments
 (0)