Skip to content

Commit 153b76d

Browse files
committed
Auto-generated commit
1 parent 435d101 commit 153b76d

File tree

49 files changed

+107
-103
lines changed

Some content is hidden

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

49 files changed

+107
-103
lines changed

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2025-08-18T01:04:06.860Z

CHANGELOG.md

Lines changed: 3 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-18)
88

99
<section class="issues">
1010

@@ -24,6 +24,8 @@ This release closes the following issue:
2424

2525
<details>
2626

27+
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
28+
- [`f344466`](https://github.com/stdlib-js/stdlib/commit/f344466c6dcfb8f52d7f3148acaadd52772938da) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
2729
- [`77867ac`](https://github.com/stdlib-js/stdlib/commit/77867ac1767a186023f633dea30ddf860962aaed) - **docs:** remove trailing whitespace _(by Philipp Burckhardt)_
2830
- [`296ea30`](https://github.com/stdlib-js/stdlib/commit/296ea30ecee4eb9377455f83a7561635c8c2a84f) - **chore:** fix EditorConfig lint errors [(#7063)](https://github.com/stdlib-js/stdlib/pull/7063) _(by Uday Kakade)_
2931
- [`ee57af4`](https://github.com/stdlib-js/stdlib/commit/ee57af4b2fb41972323b5d2b0b74596754d8dbb0) - **refactor:** use base array assertion utility _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com>
166166
Ryan Seal <splrk@users.noreply.github.com>
167167
Rylan Yang <137365285+rylany27@users.noreply.github.com>
168168
SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com>
169+
SAUJANYA MAGARDE <162047941+SaujanyaMagarde@users.noreply.github.com>
169170
SHIVAM YADAV <120725381+Shivam-1827@users.noreply.github.com>
170171
Sachin Raj <120590207+schnrj@users.noreply.github.com>
171172
Sahil Goyal <87982509+sahil20021008@users.noreply.github.com>

basename-posix/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ tape( 'main export is a function', function test( t ) {
3434
});
3535

3636
tape( 'attached to the main export is a regular expression', function test( t ) {
37-
t.equal( isRegExp( reBasenamePosix.REGEXP ), true, 'exports a regular expression' );
37+
t.strictEqual( isRegExp( reBasenamePosix.REGEXP ), true, 'exports a regular expression' );
3838
t.end();
3939
});

basename-windows/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ tape( 'main export is a function', function test( t ) {
3434
});
3535

3636
tape( 'attached to the main export is a regular expression', function test( t ) {
37-
t.equal( isRegExp( reBasenameWindows.REGEXP ), true, 'exports a regular expression' );
37+
t.strictEqual( isRegExp( reBasenameWindows.REGEXP ), true, 'exports a regular expression' );
3838
t.end();
3939
});

decimal-number/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ tape( 'main export is a function', function test( t ) {
3434
});
3535

3636
tape( 'attached to the main export is a regular expression', function test( t ) {
37-
t.equal( isRegExp( reDecimalNumber.REGEXP ), true, 'exports a regular expression' );
37+
t.strictEqual( isRegExp( reDecimalNumber.REGEXP ), true, 'exports a regular expression' );
3838
t.end();
3939
});
4040

4141
tape( 'attached to the main export is a regular expression (capture group)', function test( t ) {
42-
t.equal( isRegExp( reDecimalNumber.REGEXP_CAPTURE ), true, 'exports a regular expression' );
42+
t.strictEqual( isRegExp( reDecimalNumber.REGEXP_CAPTURE ), true, 'exports a regular expression' );
4343
t.end();
4444
});

decimal-number/test/test.validate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ tape( 'the function returns `null` if all options are valid', function test( t )
123123
};
124124

125125
err = validate( opts, options );
126-
t.strictEqual( err, null, 'returns null' );
126+
t.strictEqual( err, null, 'returns expected value' );
127127
t.deepEqual( opts, options, 'sets options' );
128128

129129
t.end();
@@ -141,7 +141,7 @@ tape( 'the function ignores unrecognized options', function test( t ) {
141141
};
142142

143143
err = validate( opts, options );
144-
t.strictEqual( err, null, 'returns null' );
144+
t.strictEqual( err, null, 'returns expected value' );
145145
t.deepEqual( opts, {}, 'ignores unrecognized options' );
146146

147147
t.end();

dirname-posix/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ tape( 'main export is a function', function test( t ) {
3434
});
3535

3636
tape( 'attached to the main export is a regular expression', function test( t ) {
37-
t.equal( isRegExp( reDirnamePosix.REGEXP ), true, 'exports a regular expression' );
37+
t.strictEqual( isRegExp( reDirnamePosix.REGEXP ), true, 'exports a regular expression' );
3838
t.end();
3939
});

dirname-posix/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ tape( 'the function returns a regular expression that captures POSIX path dirnam
8181

8282
for ( i = 0; i < values.length; i++ ) {
8383
dir = RE.exec( values[ i ] )[ 1 ];
84-
t.equal( dir, expected[ i ], values[ i ] );
84+
t.strictEqual( dir, expected[ i ], values[ i ] );
8585
}
8686
t.end();
8787
});

dirname-posix/test/test.regexp.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var RE = require( './../lib/regexp.js' );
2828

2929
tape( 'main export is a regular expression', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( RE instanceof RegExp, true, 'main export is a regular expression' );
31+
t.strictEqual( RE instanceof RegExp, true, 'main export is a regular expression' );
3232
t.end();
3333
});
3434

@@ -78,7 +78,7 @@ tape( 'the regular expression captures POSIX path dirnames', function test( t )
7878

7979
for ( i = 0; i < values.length; i++ ) {
8080
dir = RE.exec( values[ i ] )[ 1 ];
81-
t.equal( dir, expected[ i ], values[ i ] );
81+
t.strictEqual( dir, expected[ i ], values[ i ] );
8282
}
8383
t.end();
8484
});

0 commit comments

Comments
 (0)