1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
Description: disable test incompatible with debci machines
Author: Xavier Guimard <yadd@debian.org>
Bug-Debian: https://bugs.debian.org/960720
Forwarded: not-needed
Last-Update: 2020-05-26
--- a/test/arrays.js
+++ b/test/arrays.js
@@ -5,6 +5,7 @@
var co = require('..');
describe('co(* -> yield [])', function(){
+ /*
it('should aggregate several thunks', function(){
return co(function *(){
var a = read('index.js', 'utf8');
@@ -18,6 +19,7 @@
assert(~res[2].indexOf('devDependencies'));
});
})
+ */
it('should noop with no args', function(){
return co(function *(){
--- a/test/objects.js
+++ b/test/objects.js
@@ -5,6 +5,7 @@
var co = require('..');
describe('co(* -> yield {})', function(){
+ /*
it('should aggregate several thunks', function(){
return co(function *(){
var a = read('index.js', 'utf8');
@@ -23,6 +24,7 @@
assert(~res.c.indexOf('devDependencies'));
});
})
+ */
it('should noop with no args', function(){
return co(function *(){
|