Skip to content

Commit 96f140a

Browse files
committed
Auto-generated commit
1 parent 0be880d commit 96f140a

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

test/test.factory.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tape( 'the function throws an error if not provided a function to invoke for eac
4444
true,
4545
false,
4646
null,
47-
undefined,
47+
void 0,
4848
{},
4949
[]
5050
];
@@ -72,7 +72,7 @@ tape( 'the function throws an error if not provided a function to invoke for eac
7272
true,
7373
false,
7474
null,
75-
undefined,
75+
void 0,
7676
{},
7777
[]
7878
];
@@ -104,7 +104,7 @@ tape( 'the function throws an error if provided an `options` argument which is n
104104
true,
105105
false,
106106
null,
107-
undefined,
107+
void 0,
108108
[],
109109
function noop() {}
110110
];
@@ -138,7 +138,7 @@ tape( 'the function throws an error if provided an invalid option', function tes
138138
true,
139139
false,
140140
null,
141-
undefined,
141+
void 0,
142142
[],
143143
{},
144144
function noop() {}
@@ -259,7 +259,7 @@ tape( 'the returned function throws an error if not provided a callback function
259259
true,
260260
false,
261261
null,
262-
undefined,
262+
void 0,
263263
{},
264264
[]
265265
];
@@ -298,7 +298,7 @@ tape( 'the returned function throws an error if not provided a callback function
298298
true,
299299
false,
300300
null,
301-
undefined,
301+
void 0,
302302
{},
303303
[]
304304
];

test/test.map_values.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ tape( 'the function throws an error if not provided a function to invoke for eac
104104
true,
105105
false,
106106
null,
107-
undefined,
107+
void 0,
108108
{},
109109
[]
110110
];
@@ -132,7 +132,7 @@ tape( 'the function throws an error if not provided a function to invoke for eac
132132
true,
133133
false,
134134
null,
135-
undefined,
135+
void 0,
136136
{},
137137
[]
138138
];
@@ -164,7 +164,7 @@ tape( 'the function throws an error if not provided a callback function (no opti
164164
true,
165165
false,
166166
null,
167-
undefined,
167+
void 0,
168168
{},
169169
[]
170170
];
@@ -200,7 +200,7 @@ tape( 'the function throws an error if not provided a callback function (options
200200
true,
201201
false,
202202
null,
203-
undefined,
203+
void 0,
204204
{},
205205
[]
206206
];
@@ -236,7 +236,7 @@ tape( 'the function throws an error if provided an `options` argument which is n
236236
true,
237237
false,
238238
null,
239-
undefined,
239+
void 0,
240240
[],
241241
function noop() {}
242242
];
@@ -270,7 +270,7 @@ tape( 'the function throws an error if provided an invalid option', function tes
270270
true,
271271
false,
272272
null,
273-
undefined,
273+
void 0,
274274
[],
275275
{},
276276
function noop() {}

test/test.validate.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ tape( 'the function returns an error if provided an `options` argument which is
4242
5,
4343
true,
4444
false,
45-
undefined,
45+
void 0,
4646
null,
4747
NaN,
4848
[],
@@ -69,7 +69,7 @@ tape( 'the function returns an error if provided a `limit` option which is not a
6969
3.14,
7070
true,
7171
false,
72-
undefined,
72+
void 0,
7373
null,
7474
NaN,
7575
[],
@@ -96,7 +96,7 @@ tape( 'the function returns an error if provided a `series` option which is not
9696
values = [
9797
'5',
9898
5,
99-
undefined,
99+
void 0,
100100
null,
101101
NaN,
102102
[],
@@ -125,7 +125,7 @@ tape( 'the function accepts any value for the `thisArg` option', function test(
125125
5,
126126
true,
127127
false,
128-
undefined,
128+
void 0,
129129
null,
130130
NaN,
131131
[],

0 commit comments

Comments
 (0)