Skip to content

Commit 97ed509

Browse files
committed
Auto-generated commit
1 parent e113d58 commit 97ed509

File tree

5 files changed

+38
-2
lines changed

5 files changed

+38
-2
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-06-30)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`f87c5e7`](https://github.com/stdlib-js/stdlib/commit/f87c5e70befaa06d3df0ae85eb47bdaaa9d93557) - **test:** use looser check to handle top-level `examples` which has `index.mjs` _(by Philipp Burckhardt)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Philipp Burckhardt
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.2">
640

741
## 0.2.2 (2024-07-27)

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
198198
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
199199
Yugal Kaushik <yugalkaushik14@gmail.com>
200200
Yuvi Mittal <128018763+yuvi-mittal@users.noreply.github.com>
201+
deepak427 <62477872+deepak427@users.noreply.github.com>
201202
devshree-bhati <147095250+devshree-bhati@users.noreply.github.com>
202203
ditsu <170345142+ditsus@users.noreply.github.com>
203204
ekambains <bainsinbusiness@gmail.com>

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2"
4747
},
4848
"devDependencies": {
49+
"@stdlib/assert-contains": "^0.2.2",
4950
"@stdlib/assert-is-browser": "^0.2.2",
5051
"@stdlib/assert-is-windows": "^0.2.2",
5152
"@stdlib/process-exec-path": "^0.2.2",

test/test.cli.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var resolve = require( 'path' ).resolve;
2424
var exec = require( 'child_process' ).exec;
2525
var tape = require( 'tape' );
26+
var contains = require( '@stdlib/assert-contains' );
2627
var IS_BROWSER = require( '@stdlib/assert-is-browser' );
2728
var IS_WINDOWS = require( '@stdlib/assert-is-windows' );
2829
var EXEC_PATH = require( '@stdlib/process-exec-path' );
@@ -156,7 +157,7 @@ tape( 'the command-line interface reads the entire contents of a directory', opt
156157
t.fail( error.message );
157158
} else {
158159
str = stdout.toString();
159-
t.strictEqual( str, 'index.js\n', 'prints directory contents to `stdout`' );
160+
t.strictEqual( contains( str, 'index.js\n' ), true, 'prints directory contents to `stdout`' );
160161
t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' );
161162
}
162163
t.end();

0 commit comments

Comments
 (0)