File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9494 cat <<- EOF
9595 import { Client } from '$1';
9696 const client = new Client();
97- const secured = await client.connect();
98- console.log(secured );
97+ const info = await client.connect();
98+ console.log("Encrypted: " + info.encrypted );
9999 await client.end();
100100 EOF
101101 }
@@ -105,7 +105,7 @@ jobs:
105105 npm run test:prod || exit 1
106106 npm run build
107107 gen_code ./dist/src/index.js > test.mjs
108- node test.mjs | tee /dev/stderr | grep -q true
108+ node test.mjs | tee /dev/stderr | grep true
109109 ;;
110110 bun)
111111 # Workaround: https://github.com/oven-sh/bun/issues/1590
@@ -114,7 +114,7 @@ jobs:
114114 bun install -p --ignore-scripts
115115 bun build src/index.ts --target bun > ts-postgres.js
116116 gen_code ./ts-postgres.js > test.mjs
117- bun test.mjs | tee /dev/stderr | grep -q true
117+ bun test.mjs | tee /dev/stderr | grep true
118118 ;;
119119 esac
120120 env :
You can’t perform that action at this time.
0 commit comments