summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-01-04 16:29:49 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-01-04 16:29:49 +0100
commiteecbb9649f49abf09ded950911d6222d6c3d8519 (patch)
tree0e79599df47bd81623eb986dba7239a3e422c434 /src/test
parent:sparkles: update to use new lambert-server (diff)
downloadserver-eecbb9649f49abf09ded950911d6222d6c3d8519.tar.xz
:tada: init
Diffstat (limited to 'src/test')
-rw-r--r--src/test/db_test.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/db_test.ts b/src/test/db_test.ts
new file mode 100644

index 00000000..9d4b0072 --- /dev/null +++ b/src/test/db_test.ts
@@ -0,0 +1,9 @@ +import { r } from "rethinkdb-ts"; + +async function main() { + const connection = await r.connect({ port: 28015, host: "192.168.178.122" }); + + r.db("test"); +} + +main();