We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ec9634 commit c5b8e89Copy full SHA for c5b8e89
2 files changed
package.json
@@ -8,6 +8,7 @@
8
"scripts": {
9
"prepare": "node .husky/install.mjs",
10
"build": "npm run build --workspaces",
11
+ "test": "./testing/test.sh",
12
"typecheck": "npm run typecheck --workspaces",
13
"format:check": "npm run format:check --workspaces",
14
"lint-staged": "lint-staged"
testing/test.sh
@@ -0,0 +1,7 @@
1
+#!/bin/sh
2
+
3
+python3 -m venv .venv
4
+source .venv/bin/activate
5
+pip3 install aiohttp protobuf
6
7
+npm run build && SERVER=test_v2 python3 testing/hrana-test-server/server_v2.py npm test --prefix packages/libsql-client
0 commit comments