Skip to content

Commit 91f4050

Browse files
committed
[Dev Deps] revert tape to v4, since we lack an object structure assertion in v5
1 parent 782b370 commit 91f4050

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"eslint": "=8.8.0",
3434
"nyc": "^10.3.2",
3535
"safe-publish-latest": "^2.0.0",
36-
"tape": "^5.9.0"
36+
"tape": "^4.17.0"
3737
},
3838
"license": "MIT",
3939
"engines": {

test/index.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ test('merge string with array', function (t) {
9090
t.end();
9191
});
9292

93-
test('merge string with date', { todo: 'investigate why this is broken' }, function (t) {
93+
test('merge string with date', function (t) {
9494
var ori = 'what u gonna say';
9595
var target = extend(ori, date);
9696

@@ -157,7 +157,7 @@ test('merge number with array', function (t) {
157157
t.end();
158158
});
159159

160-
test('merge number with date', { todo: 'investigate why this is broken' }, function (t) {
160+
test('merge number with date', function (t) {
161161
var target = extend(20, date);
162162
var testDate = new Date(81, 4, 13);
163163

@@ -183,7 +183,7 @@ test('merge number with object', function (t) {
183183
t.end();
184184
});
185185

186-
test('merge array with string', { todo: 'investigate why this is broken' }, function (t) {
186+
test('merge array with string', function (t) {
187187
var ori = [1, 2, 3, 4, 5, 6];
188188
var target = extend(ori, str);
189189

@@ -264,7 +264,7 @@ test('merge array with object', function (t) {
264264
t.end();
265265
});
266266

267-
test('merge date with string', { todo: 'investigate why this is broken' }, function (t) {
267+
test('merge date with string', function (t) {
268268
var ori = new Date(81, 9, 20);
269269
var target = extend(ori, str);
270270
var testObject = {
@@ -285,7 +285,7 @@ test('merge date with string', { todo: 'investigate why this is broken' }, funct
285285
t.end();
286286
});
287287

288-
test('merge date with number', { todo: 'investigate why this is broken' }, function (t) {
288+
test('merge date with number', function (t) {
289289
var ori = new Date(81, 9, 20);
290290
var target = extend(ori, 10);
291291

@@ -294,7 +294,7 @@ test('merge date with number', { todo: 'investigate why this is broken' }, funct
294294
t.end();
295295
});
296296

297-
test('merge date with array', { todo: 'investigate why this is broken' }, function (t) {
297+
test('merge date with array', function (t) {
298298
var ori = new Date(81, 9, 20);
299299
var target = extend(ori, arr);
300300
var testDate = new Date(81, 9, 20);
@@ -306,7 +306,7 @@ test('merge date with array', { todo: 'investigate why this is broken' }, functi
306306
t.end();
307307
});
308308

309-
test('merge date with date', { todo: 'investigate why this is broken' }, function (t) {
309+
test('merge date with date', function (t) {
310310
var ori = new Date(81, 9, 20);
311311
var target = extend(ori, date);
312312

@@ -315,7 +315,7 @@ test('merge date with date', { todo: 'investigate why this is broken' }, functio
315315
t.end();
316316
});
317317

318-
test('merge date with object', { todo: 'investigate why this is broken' }, function (t) {
318+
test('merge date with object', function (t) {
319319
var ori = new Date(81, 9, 20);
320320
var target = extend(ori, obj);
321321
var testDate = new Date(81, 8, 4);

0 commit comments

Comments
 (0)