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 fd4d3b6 commit f6a7459Copy full SHA for f6a7459
packages/cubejs-databricks-jdbc-driver/README.md
@@ -20,6 +20,8 @@ $ yarn
20
$ yarn test
21
```
22
23
+Note: Unit tests requires Java to be installed.
24
+
25
### License
26
27
Cube.js Databricks Database Driver is [Apache 2.0 licensed](./LICENSE).
packages/cubejs-databricks-jdbc-driver/package.json
@@ -18,8 +18,8 @@
18
"build": "rm -rf dist && npm run tsc",
19
"tsc": "tsc",
"watch": "tsc -w",
- "test": "npm run unit",
- "unit": "jest dist/test --forceExit",
+ "test": "npm run unit-tests",
+ "unit-tests": "jest dist/test --forceExit",
"lint": "eslint src/* --ext .ts",
"lint:fix": "eslint --fix src/* --ext .ts",
"postinstall": "node bin/post-install"
0 commit comments