Skip to content

Commit c99095e

Browse files
committed
Auto-generated commit
1 parent da33dba commit c99095e

File tree

206 files changed

+1197
-1187
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+1197
-1187
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-12)
7+
## Unreleased (2025-08-15)
88

99
<section class="features">
1010

@@ -157,6 +157,12 @@ A total of 6 issues were closed in this release:
157157

158158
<details>
159159

160+
- [`6f85067`](https://github.com/stdlib-js/stdlib/commit/6f8506775cdf2b3edf740216340ff7a0a82677dc) - **test:** fix malformed test descriptions from strictEqual migration _(by Philipp Burckhardt)_
161+
- [`97f0e11`](https://github.com/stdlib-js/stdlib/commit/97f0e11fad5ac045777328c45d2ff595f568a5e0) - **chore:** use canonical format for JSDoc union types _(by Philipp Burckhardt)_
162+
- [`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
163+
- [`11581aa`](https://github.com/stdlib-js/stdlib/commit/11581aaca8c3cb824cbb92c0c0f80e76890bdb20) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
164+
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
165+
- [`a147b7d`](https://github.com/stdlib-js/stdlib/commit/a147b7d6ef754925120fcc7bdec2b40842a3615a) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
160166
- [`77867ac`](https://github.com/stdlib-js/stdlib/commit/77867ac1767a186023f633dea30ddf860962aaed) - **docs:** remove trailing whitespace _(by Philipp Burckhardt)_
161167
- [`153c9c1`](https://github.com/stdlib-js/stdlib/commit/153c9c19e7e5bc138e18500cea598365d6df55d8) - **style:** fix indentation in JSON files _(by Philipp Burckhardt)_
162168
- [`4baa837`](https://github.com/stdlib-js/stdlib/commit/4baa837fde6fbe176add7b35f1f95f2e3b476ac0) - **chore:** fix EditorConfig lint errors [(#7696)](https://github.com/stdlib-js/stdlib/pull/7696) _(by Satyajeet Chavan, Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ Ruthwik Chikoti <[email protected]>
166166
Ryan Seal <[email protected]>
167167
Rylan Yang <[email protected]>
168168
SAHIL KUMAR <[email protected]>
169+
SAUJANYA MAGARDE <[email protected]>
169170
SHIVAM YADAV <[email protected]>
170171
Sachin Raj <[email protected]>
171172
Sahil Goyal <[email protected]>

any-by-right/test/test.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ tape( 'if provided an empty collection, the function returns `false`', function
115115
arr = [];
116116
bool = anyByRight( arr, foo );
117117

118-
t.strictEqual( bool, false, 'returns false' );
118+
t.strictEqual( bool, false, 'returns expected value' );
119119
t.end();
120120
});
121121

@@ -127,7 +127,7 @@ tape( 'the function returns `true` if at least one element passes a test (array)
127127

128128
bool = anyByRight( arr, isNegative );
129129

130-
t.strictEqual( bool, true, 'returns true' );
130+
t.strictEqual( bool, true, 'returns expected value' );
131131
t.end();
132132
});
133133

@@ -139,7 +139,7 @@ tape( 'the function returns `false` if all elements fail a test (array)', functi
139139

140140
bool = anyByRight( arr, isPositive );
141141

142-
t.strictEqual( bool, false, 'returns false' );
142+
t.strictEqual( bool, false, 'returns expected value' );
143143
t.end();
144144
});
145145

@@ -157,7 +157,7 @@ tape( 'the function returns `true` if at least one element passes a test (array-
157157

158158
bool = anyByRight( arr, isNegative );
159159

160-
t.strictEqual( bool, true, 'returns true' );
160+
t.strictEqual( bool, true, 'returns expected value' );
161161
t.end();
162162
});
163163

@@ -174,7 +174,7 @@ tape( 'the function returns `false` if all elements fail a test (array-like obje
174174

175175
bool = anyByRight( arr, isPositive );
176176

177-
t.strictEqual( bool, false, 'returns false' );
177+
t.strictEqual( bool, false, 'returns expected value' );
178178
t.end();
179179
});
180180

@@ -186,7 +186,7 @@ tape( 'the function returns `true` if at least one element passes a test (typed
186186

187187
bool = anyByRight( arr, isNegative );
188188

189-
t.strictEqual( bool, true, 'returns true' );
189+
t.strictEqual( bool, true, 'returns expected value' );
190190
t.end();
191191
});
192192

@@ -198,7 +198,7 @@ tape( 'the function returns `false` if all elements fail a test (typed array)',
198198

199199
bool = anyByRight( arr, isPositive );
200200

201-
t.strictEqual( bool, false, 'returns false' );
201+
t.strictEqual( bool, false, 'returns expected value' );
202202
t.end();
203203
});
204204

@@ -222,7 +222,7 @@ tape( 'the function supports providing an execution context', function test( t )
222222

223223
bool = anyByRight( arr, sum, ctx );
224224

225-
t.strictEqual( bool, true, 'returns true' );
225+
t.strictEqual( bool, true, 'returns expected value' );
226226
t.strictEqual( ctx.sum/ctx.count, 1.25, 'expected result' );
227227

228228
t.end();
@@ -244,7 +244,7 @@ tape( 'the function provides basic support for dynamic arrays', function test( t
244244
bool = anyByRight( arr, isNegative );
245245

246246
t.deepEqual( arr, [ -2, -1, 0, 1, 2, 3 ], 'expected result' );
247-
t.strictEqual( bool, true, 'returns true' );
247+
t.strictEqual( bool, true, 'returns expected value' );
248248

249249
t.end();
250250
});
@@ -267,6 +267,6 @@ tape( 'the function does not skip empty elements', function test( t ) {
267267

268268
bool = anyByRight( arr, verify );
269269

270-
t.strictEqual( bool, true, 'returns true' );
270+
t.strictEqual( bool, true, 'returns expected value' );
271271
t.end();
272272
});

any-by/test/test.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ tape( 'if provided an empty collection, the function returns `false`', function
115115
arr = [];
116116
bool = anyBy( arr, foo );
117117

118-
t.strictEqual( bool, false, 'returns false' );
118+
t.strictEqual( bool, false, 'returns expected value' );
119119
t.end();
120120
});
121121

@@ -127,7 +127,7 @@ tape( 'the function returns `true` if at least one element passes a test (array)
127127

128128
bool = anyBy( arr, isNegative );
129129

130-
t.strictEqual( bool, true, 'returns true' );
130+
t.strictEqual( bool, true, 'returns expected value' );
131131
t.end();
132132
});
133133

@@ -139,7 +139,7 @@ tape( 'the function returns `false` if all elements fail a test (array)', functi
139139

140140
bool = anyBy( arr, isPositive );
141141

142-
t.strictEqual( bool, false, 'returns false' );
142+
t.strictEqual( bool, false, 'returns expected value' );
143143
t.end();
144144
});
145145

@@ -157,7 +157,7 @@ tape( 'the function returns `true` if at least one element passes a test (array-
157157

158158
bool = anyBy( arr, isNegative );
159159

160-
t.strictEqual( bool, true, 'returns true' );
160+
t.strictEqual( bool, true, 'returns expected value' );
161161
t.end();
162162
});
163163

@@ -174,7 +174,7 @@ tape( 'the function returns `false` if all elements fail a test (array-like obje
174174

175175
bool = anyBy( arr, isPositive );
176176

177-
t.strictEqual( bool, false, 'returns false' );
177+
t.strictEqual( bool, false, 'returns expected value' );
178178
t.end();
179179
});
180180

@@ -186,7 +186,7 @@ tape( 'the function returns `true` if at least one element passes a test (typed
186186

187187
bool = anyBy( arr, isNegative );
188188

189-
t.strictEqual( bool, true, 'returns true' );
189+
t.strictEqual( bool, true, 'returns expected value' );
190190
t.end();
191191
});
192192

@@ -198,7 +198,7 @@ tape( 'the function returns `false` if all elements fail a test (typed array)',
198198

199199
bool = anyBy( arr, isPositive );
200200

201-
t.strictEqual( bool, false, 'returns false' );
201+
t.strictEqual( bool, false, 'returns expected value' );
202202
t.end();
203203
});
204204

@@ -222,7 +222,7 @@ tape( 'the function supports providing an execution context', function test( t )
222222

223223
bool = anyBy( arr, sum, ctx );
224224

225-
t.strictEqual( bool, true, 'returns true' );
225+
t.strictEqual( bool, true, 'returns expected value' );
226226
t.strictEqual( ctx.sum/ctx.count, 1.25, 'expected result' );
227227

228228
t.end();
@@ -244,7 +244,7 @@ tape( 'the function provides basic support for dynamic arrays', function test( t
244244
bool = anyBy( arr, isNegative );
245245

246246
t.deepEqual( arr, [ 1, 2, 3, 2, 1, 0, -1, -2 ], 'expected result' );
247-
t.strictEqual( bool, true, 'returns true' );
247+
t.strictEqual( bool, true, 'returns expected value' );
248248

249249
t.end();
250250
});
@@ -264,6 +264,6 @@ tape( 'the function does not skip empty elements', function test( t ) {
264264

265265
bool = anyBy( arr, verify );
266266

267-
t.strictEqual( bool, true, 'returns true' );
267+
t.strictEqual( bool, true, 'returns expected value' );
268268
t.end();
269269
});

any-in-by/test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ tape( 'the function returns `true` if at least one own property passes a test',
136136

137137
bool = anyInBy( obj, overAge );
138138

139-
t.strictEqual( bool, true, 'returns true' );
139+
t.strictEqual( bool, true, 'returns expected value' );
140140
t.end();
141141
});
142142

@@ -156,7 +156,7 @@ tape( 'the function returns `true` if one or more own properties pass a test', f
156156

157157
bool = anyInBy( obj, underAge );
158158

159-
t.strictEqual( bool, true, 'returns true' );
159+
t.strictEqual( bool, true, 'returns expected value' );
160160
t.end();
161161
});
162162

@@ -176,6 +176,6 @@ tape( 'the function returns `false` if none of the own properties passes a test'
176176

177177
bool = anyInBy( obj, underAge );
178178

179-
t.strictEqual( bool, false, 'returns false' );
179+
t.strictEqual( bool, false, 'returns expected value' );
180180
t.end();
181181
});

any-own-by/test/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ tape( 'if provided an empty object, the function returns `false`', function test
109109
obj = {};
110110
bool = anyOwnBy( obj, foo );
111111

112-
t.strictEqual( bool, false, 'returns false' );
112+
t.strictEqual( bool, false, 'returns expected value' );
113113
t.end();
114114
});
115115

@@ -125,7 +125,7 @@ tape( 'the function returns `true` if any one property pass a test', function te
125125

126126
bool = anyOwnBy( obj, isPositive );
127127

128-
t.strictEqual( bool, true, 'returns true' );
128+
t.strictEqual( bool, true, 'returns expected value' );
129129
t.end();
130130
});
131131

@@ -142,7 +142,7 @@ tape( 'the function returns `false` if no properties pass a test', function test
142142

143143
bool = anyOwnBy( obj, isPositive );
144144

145-
t.strictEqual( bool, false, 'returns false' );
145+
t.strictEqual( bool, false, 'returns expected value' );
146146
t.end();
147147
});
148148

@@ -172,7 +172,7 @@ tape( 'the function supports providing an execution context', function test( t )
172172

173173
bool = anyOwnBy( obj, verify, ctx );
174174

175-
t.strictEqual( bool, true, 'returns true' );
175+
t.strictEqual( bool, true, 'returns expected value' );
176176
t.strictEqual( ctx.sum/ctx.count, 0, 'expected result' );
177177

178178
t.end();

any/test/test.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ tape( 'if provided an empty collection, the function returns `false`', function
7070
arr = [];
7171
bool = any( arr );
7272

73-
t.strictEqual( bool, false, 'returns false' );
73+
t.strictEqual( bool, false, 'returns expected value' );
7474
t.end();
7575
});
7676

@@ -81,7 +81,7 @@ tape( 'the function returns `true` if at least one element is truthy (array)', f
8181
arr = [ 0, 0, 0, 0, 1 ];
8282
bool = any( arr );
8383

84-
t.strictEqual( bool, true, 'returns true' );
84+
t.strictEqual( bool, true, 'returns expected value' );
8585
t.end();
8686
});
8787

@@ -92,7 +92,7 @@ tape( 'the function returns `false` if all elements are falsy (array)', function
9292
arr = [ 0, 0, 0 ];
9393
bool = any( arr );
9494

95-
t.strictEqual( bool, false, 'returns false' );
95+
t.strictEqual( bool, false, 'returns expected value' );
9696
t.end();
9797
});
9898

@@ -110,7 +110,7 @@ tape( 'the function returns `true` if at least one element is truthy (array-like
110110

111111
bool = any( arr );
112112

113-
t.strictEqual( bool, true, 'returns true' );
113+
t.strictEqual( bool, true, 'returns expected value' );
114114
t.end();
115115
});
116116

@@ -127,7 +127,7 @@ tape( 'the function returns `false` if all elements are falsy (array-like object
127127

128128
bool = any( arr );
129129

130-
t.strictEqual( bool, false, 'returns false' );
130+
t.strictEqual( bool, false, 'returns expected value' );
131131
t.end();
132132
});
133133

@@ -138,7 +138,7 @@ tape( 'the function returns `true` if at least one element is truthy (typed arra
138138
arr = new Float64Array( [ 0.0, 0.0, 2.0, 0.0 ] );
139139
bool = any( arr );
140140

141-
t.strictEqual( bool, true, 'returns true' );
141+
t.strictEqual( bool, true, 'returns expected value' );
142142
t.end();
143143
});
144144

@@ -149,6 +149,6 @@ tape( 'the function returns `false` if all elements are falsy (typed array)', fu
149149
arr = new Float64Array( 3 );
150150
bool = any( arr );
151151

152-
t.strictEqual( bool, false, 'returns false' );
152+
t.strictEqual( bool, false, 'returns expected value' );
153153
t.end();
154154
});

argument-function/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ tape( 'the function throws an error if provided an index argument which is not a
6565
});
6666

6767
tape( 'the function returns a function', function test( t ) {
68-
t.strictEqual( typeof argumentFunction( 1 ), 'function', 'returns a function' );
68+
t.strictEqual( typeof argumentFunction( 1 ), 'function', 'returns expected value' );
6969
t.end();
7070
});
7171

0 commit comments

Comments
 (0)