Skip to content

Commit 8aecf91

Browse files
committed
test: added code to connect to local surrealdb, tests run with 8 failures
1 parent ced9103 commit 8aecf91

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

integration_test/surrealdb_wasm_test.dart

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@ SIGNIN (
2222

2323
setUpAll(() async {
2424
await db.connect('indxdb://surreal');
25+
/* Tests run on 01 Feb 2024 with 8 errors/failures?
26+
Local SurrealDB v1.1.1 started with the following command:
27+
surreal start --log trace --user root --pass root
28+
await db.connect(
29+
'ws://localhost:8000',
30+
options: {
31+
'user': {'username': 'root', 'password': 'root'},
32+
},
33+
);
34+
*/
2535
await db.use(ns: 'surreal', db: 'surreal');
2636
});
2737

0 commit comments

Comments
 (0)