@@ -130,7 +130,7 @@ describe('examples', function() {
130130 setTimeout ( function ( ) {
131131 expect ( out [ 0 ] ) . toBe ( "There were 1 the ones created." ) ;
132132 done ( ) ;
133- } , 500 )
133+ } , 1000 )
134134 } ) ;
135135
136136 it ( 'should be able to iterate results' , function ( done ) {
@@ -159,7 +159,7 @@ describe('examples', function() {
159159 setTimeout ( function ( ) {
160160 expect ( out [ 0 ] ) . toBe ( "Sword in the stone" ) ;
161161 done ( ) ;
162- } , 500 ) ;
162+ } , 1000 ) ;
163163 } ) ;
164164
165165 it ( 'should be able to access records' , function ( done ) {
@@ -194,7 +194,7 @@ describe('examples', function() {
194194 setTimeout ( function ( ) {
195195 expect ( out [ 0 ] . length ) . toBe ( 3 ) ;
196196 done ( ) ;
197- } , 500 )
197+ } , 1000 )
198198 } ) ;
199199
200200 it ( 'should be able to retain for later processing' , function ( done ) {
@@ -226,7 +226,7 @@ describe('examples', function() {
226226 setTimeout ( function ( ) {
227227 expect ( out [ 0 ] ) . toBe ( "Lancelot is a knight of Camelot" ) ;
228228 done ( ) ;
229- } , 500 ) ;
229+ } , 1000 ) ;
230230 } ) ;
231231
232232 it ( 'should be able to do nested queries' , function ( done ) {
@@ -262,7 +262,7 @@ describe('examples', function() {
262262 setTimeout ( function ( ) {
263263 expect ( out [ 0 ] ) . toBe ( "Count is 1" ) ;
264264 done ( ) ;
265- } , 500 ) ;
265+ } , 1000 ) ;
266266 } ) ;
267267
268268 it ( 'should be able to handle cypher error' , function ( done ) {
@@ -295,7 +295,7 @@ describe('examples', function() {
295295 setTimeout ( function ( ) {
296296 expect ( out . length ) . toBe ( 1 ) ;
297297 done ( ) ;
298- } , 500 ) ;
298+ } , 1000 ) ;
299299 } ) ;
300300
301301 it ( 'should be able to see notifications' , function ( done ) {
@@ -315,7 +315,7 @@ describe('examples', function() {
315315 setTimeout ( function ( ) {
316316 expect ( out [ 0 ] ) . toBe ( "Neo.ClientNotification.Statement.CartesianProductWarning" ) ;
317317 done ( ) ;
318- } , 500 ) ;
318+ } , 1000 ) ;
319319 } ) ;
320320
321321 it ( 'should document committing a transaction' , function ( ) {
0 commit comments