You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Testkit environment variables without `TEST_` prefix are not forward by the Testkit to the
scripts in the driver. So we need change the session type variable expected by the `backend.py`
to be `TEST_SESSION_TYPE` and then remove the prefix before redirect to the backend.
This PR also fix the `SessionRun` and `TransactionRun` to not initiate the stream.
**Warn**: `RxSession.beginTransaction` and `RxSession.execute*` were tweaked. The `Observable<RxTransaction>` only emits the `RxTransaction` when the begin is executed with success. The begin still defer the execution to the point observer is subscribed.
Co-authored-by: Florent Biville <445792+fbiville@users.noreply.github.com>
exports[`json .stringify should handle objects created with createBrokenObject 1`] =`"{\\"__isBrokenObject__\\":true,\\"__reason__\\":{\\"code\\":\\"N/A\\",\\"name\\":\\"Neo4jError\\",\\"retriable\\":false}}"`;
4
+
5
+
exports[`json .stringify should handle objects created with createBrokenObject in list 1`] =`"[{\\"__isBrokenObject__\\":true,\\"__reason__\\":{\\"code\\":\\"N/A\\",\\"name\\":\\"Neo4jError\\",\\"retriable\\":false}}]"`;
6
+
7
+
exports[`json .stringify should handle objects created with createBrokenObject inside other object 1`] =`"{\\"number\\":1,\\"broken\\":{\\"__isBrokenObject__\\":true,\\"__reason__\\":{\\"code\\":\\"N/A\\",\\"name\\":\\"Neo4jError\\",\\"retriable\\":false}}}"`;
0 commit comments