File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,6 @@ var util = require("./util")
33
44module . exports = function ( ) {
55
6- this . Before ( function ( scenario , callback ) {
7- this . driver = neo4j . driver ( "bolt://localhost" ) ;
8- this . session = this . driver . session ( ) ;
9- this . session . run ( "MATCH (n) DETACH DELETE n" ) . subscribe ( {
10- onCompleted : function ( ) {
11- callback ( ) ;
12- }
13- } ) ;
14- } ) ;
15-
166 this . Given ( / ^ i n i t : ( .* ) $ / , function ( statement ) {
177 return this . session . run ( statement ) ;
188 } ) ;
Original file line number Diff line number Diff line change @@ -3,11 +3,6 @@ var util = require("./util");
33
44module . exports = function ( ) {
55
6- this . Before ( function ( scenario ) {
7- this . driver = neo4j . driver ( "bolt://localhost" ) ;
8- this . session = this . driver . session ( ) ;
9- } ) ;
10-
116 this . Given ( / ^ A r u n n i n g d a t a b a s e $ / , function ( ) {
127 return this . session . run ( "RETURN 1 AS one" ) ;
138 } ) ;
You can’t perform that action at this time.
0 commit comments