@@ -67,7 +67,7 @@ describe('seneca', function(){
67
67
68
68
69
69
70
- it ( 'require-use-safetynet' , function ( fin ) {
70
+ it . skip ( 'require-use-safetynet' , function ( fin ) {
71
71
require ( '..' )
72
72
. use ( 'echo' )
73
73
. act ( 'role:echo,foo:1' , function ( err , out ) {
@@ -80,7 +80,7 @@ describe('seneca', function(){
80
80
81
81
82
82
83
- it ( 'ready-complex' , function ( fin ) {
83
+ it . skip ( 'ready-complex' , function ( fin ) {
84
84
var mark = { ec :0 }
85
85
86
86
timerstub . setTimeout ( function ( ) {
@@ -126,7 +126,7 @@ describe('seneca', function(){
126
126
} )
127
127
128
128
129
- it ( 'ready-func' , function ( fin ) {
129
+ it . skip ( 'ready-func' , function ( fin ) {
130
130
var si = seneca ( testopts )
131
131
132
132
si . ready ( function ( ) {
@@ -169,7 +169,7 @@ describe('seneca', function(){
169
169
} )
170
170
171
171
172
- it ( 'happy-error' , function ( fin ) {
172
+ it . skip ( 'happy-error' , function ( fin ) {
173
173
var si = seneca ( testopts )
174
174
175
175
si . add ( 'happy_error:1' , function ( args , done ) { done ( new Error ( 'happy-error' ) ) } )
@@ -181,7 +181,7 @@ describe('seneca', function(){
181
181
} )
182
182
183
183
184
- it ( 'errhandler' , function ( fin ) {
184
+ it . skip ( 'errhandler' , function ( fin ) {
185
185
var tmp = { }
186
186
187
187
function grab_all ( err ) {
@@ -342,7 +342,7 @@ describe('seneca', function(){
342
342
343
343
344
344
345
- it ( 'action-override' , function ( fin ) {
345
+ it . skip ( 'action-override' , function ( fin ) {
346
346
var si = seneca ( testopts )
347
347
si . options ( { errhandler :fin } )
348
348
@@ -401,7 +401,7 @@ describe('seneca', function(){
401
401
402
402
403
403
404
- it ( 'prior-nocache' , function ( fin ) {
404
+ it . skip ( 'prior-nocache' , function ( fin ) {
405
405
var si = seneca ( { log :'silent' , errhandler :fin , trace :{ act :false } } )
406
406
var count = 0 , called = ''
407
407
@@ -461,7 +461,7 @@ describe('seneca', function(){
461
461
} )
462
462
463
463
464
- it ( 'gating' , function ( fin ) {
464
+ it . skip ( 'gating' , function ( fin ) {
465
465
var si = seneca ( { log :'silent' , errhandler :fin } )
466
466
var count = 0 , called = ''
467
467
@@ -496,7 +496,7 @@ describe('seneca', function(){
496
496
497
497
498
498
499
- it ( 'act_if' , function ( fin ) {
499
+ it . skip ( 'act_if' , function ( fin ) {
500
500
var si = seneca ( testopts )
501
501
502
502
si . add ( { op :'foo' } , function ( args , done ) {
@@ -543,7 +543,7 @@ describe('seneca', function(){
543
543
} )
544
544
545
545
546
- it ( 'plugins' , function ( ) {
546
+ it . skip ( 'plugins' , function ( ) {
547
547
var si = seneca ( { plugins :[ 'echo' ] , log :'silent' } )
548
548
549
549
si . act ( { role :'echo' , baz :'bax' } , function ( err , out ) {
@@ -752,7 +752,7 @@ describe('seneca', function(){
752
752
} )
753
753
754
754
755
- it ( 'moreobjargs' , function ( fin ) {
755
+ it . skip ( 'moreobjargs' , function ( fin ) {
756
756
var p0 = { c :6 }
757
757
758
758
seneca ( { log :'silent' , errhandler :fin } )
@@ -839,7 +839,7 @@ describe('seneca', function(){
839
839
} )
840
840
841
841
842
- it ( 'parambulator' , function ( fin ) {
842
+ it . skip ( 'parambulator' , function ( fin ) {
843
843
var si = seneca ( testopts )
844
844
845
845
si . add ( { a :1 , b :'q' , c :{ required$ :true , string$ :true } } ,
@@ -873,7 +873,7 @@ describe('seneca', function(){
873
873
874
874
875
875
876
- it ( 'act-param' , function ( fin ) {
876
+ it . skip ( 'act-param' , function ( fin ) {
877
877
var si = seneca ( testopts )
878
878
879
879
si . add ( { a :1 , b :{ integer$ :true } } , function ( args , done ) {
@@ -903,7 +903,7 @@ describe('seneca', function(){
903
903
} )
904
904
905
905
906
- it ( 'sub' , function ( fin ) {
906
+ it . skip ( 'sub' , function ( fin ) {
907
907
var si = seneca ( testopts , { errhandler :fin } )
908
908
909
909
var tmp = { a :0 , as1 :0 , as2 :0 , as1_in :0 , as1_out :0 , all :0 }
@@ -976,7 +976,7 @@ describe('seneca', function(){
976
976
} )
977
977
978
978
979
- it ( 'act-cache' , function ( fin ) {
979
+ it . skip ( 'act-cache' , function ( fin ) {
980
980
var si = seneca ( testopts )
981
981
si . options ( { errhandler :fin } )
982
982
@@ -1022,7 +1022,7 @@ describe('seneca', function(){
1022
1022
} )
1023
1023
1024
1024
1025
- it ( 'zig' , function ( fin ) {
1025
+ it . skip ( 'zig' , function ( fin ) {
1026
1026
var si = seneca ( testopts )
1027
1027
si . options ( { errhandler :fin } )
1028
1028
@@ -1137,7 +1137,7 @@ describe('seneca', function(){
1137
1137
} )
1138
1138
1139
1139
1140
- it ( 'wrap' , function ( fin ) {
1140
+ it . skip ( 'wrap' , function ( fin ) {
1141
1141
var si = seneca ( testopts )
1142
1142
si . options ( { errhandler :fin } )
1143
1143
@@ -1217,7 +1217,7 @@ describe('seneca', function(){
1217
1217
} )
1218
1218
1219
1219
1220
- it ( 'meta' , function ( fin ) {
1220
+ it . skip ( 'meta' , function ( fin ) {
1221
1221
var si = seneca ( testopts )
1222
1222
si . options ( { errhandler :fin } )
1223
1223
0 commit comments