@@ -130,7 +130,7 @@ describe('examples', function() {
130
130
setTimeout ( function ( ) {
131
131
expect ( out [ 0 ] ) . toBe ( "There were 1 the ones created." ) ;
132
132
done ( ) ;
133
- } , 500 )
133
+ } , 1000 )
134
134
} ) ;
135
135
136
136
it ( 'should be able to iterate results' , function ( done ) {
@@ -159,7 +159,7 @@ describe('examples', function() {
159
159
setTimeout ( function ( ) {
160
160
expect ( out [ 0 ] ) . toBe ( "Sword in the stone" ) ;
161
161
done ( ) ;
162
- } , 500 ) ;
162
+ } , 1000 ) ;
163
163
} ) ;
164
164
165
165
it ( 'should be able to access records' , function ( done ) {
@@ -194,7 +194,7 @@ describe('examples', function() {
194
194
setTimeout ( function ( ) {
195
195
expect ( out [ 0 ] . length ) . toBe ( 3 ) ;
196
196
done ( ) ;
197
- } , 500 )
197
+ } , 1000 )
198
198
} ) ;
199
199
200
200
it ( 'should be able to retain for later processing' , function ( done ) {
@@ -226,7 +226,7 @@ describe('examples', function() {
226
226
setTimeout ( function ( ) {
227
227
expect ( out [ 0 ] ) . toBe ( "Lancelot is a knight of Camelot" ) ;
228
228
done ( ) ;
229
- } , 500 ) ;
229
+ } , 1000 ) ;
230
230
} ) ;
231
231
232
232
it ( 'should be able to do nested queries' , function ( done ) {
@@ -262,7 +262,7 @@ describe('examples', function() {
262
262
setTimeout ( function ( ) {
263
263
expect ( out [ 0 ] ) . toBe ( "Count is 1" ) ;
264
264
done ( ) ;
265
- } , 500 ) ;
265
+ } , 1000 ) ;
266
266
} ) ;
267
267
268
268
it ( 'should be able to handle cypher error' , function ( done ) {
@@ -295,7 +295,7 @@ describe('examples', function() {
295
295
setTimeout ( function ( ) {
296
296
expect ( out . length ) . toBe ( 1 ) ;
297
297
done ( ) ;
298
- } , 500 ) ;
298
+ } , 1000 ) ;
299
299
} ) ;
300
300
301
301
it ( 'should be able to see notifications' , function ( done ) {
@@ -315,7 +315,7 @@ describe('examples', function() {
315
315
setTimeout ( function ( ) {
316
316
expect ( out [ 0 ] ) . toBe ( "Neo.ClientNotification.Statement.CartesianProductWarning" ) ;
317
317
done ( ) ;
318
- } , 500 ) ;
318
+ } , 1000 ) ;
319
319
} ) ;
320
320
321
321
it ( 'should document committing a transaction' , function ( ) {
0 commit comments