Skip to content

Commit 897fc38

Browse files
committed
Auto-generated commit
1 parent b979193 commit 897fc38

File tree

4 files changed

+45
-7
lines changed

4 files changed

+45
-7
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-08-11T01:21:27.125Z
1+
2025-08-25T00:37:48.127Z

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-08-25)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`11581aa`](https://github.com/stdlib-js/stdlib/commit/11581aaca8c3cb824cbb92c0c0f80e76890bdb20) - **test:** use standardized assertion messages and fix lint errors _(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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <166795493+AbhishekG-Codes@users.noreply.github.com>
1313
Abhishek Jain <40913033+abhishekblue@users.noreply.github.com>
1414
Adarsh Palaskar <adarshpalaskar99@gmail.com>
1515
Aditya Sapra <adityaework@gmail.com>
16+
Aditya Singh <adityasinghk099@gmail.com>
1617
Ahmed Atwa <Ahmedatwa866@yahoo.com>
1718
Ahmed Kashkoush <ahmedkashkoush464@gmail.com>
1819
Ahmed Khaled <kahmd1444@gmail.com>
@@ -121,6 +122,7 @@ Muhammad Haris <harriskhan047@outlook.com>
121122
Muhammad Taaha Tariq <166188821+Taaha-Tariq@users.noreply.github.com>
122123
Muhmmad Saad <106260977+saad-imran-dev@users.noreply.github.com>
123124
NEEKUorAAYUSH <aayush10072004@gmail.com>
125+
Nakul Krishnakumar <nakulkrishnakumar86@gmail.com>
124126
Naresh Jagadeesan <naresh.naresh000@gmail.com>
125127
Naveen Kumar <stupiddint@gmail.com>
126128
Neeraj Pathak <neerajrpathak710@gmail.com>
@@ -164,6 +166,7 @@ Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com>
164166
Ryan Seal <splrk@users.noreply.github.com>
165167
Rylan Yang <137365285+rylany27@users.noreply.github.com>
166168
SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com>
169+
SAUJANYA MAGARDE <162047941+SaujanyaMagarde@users.noreply.github.com>
167170
SHIVAM YADAV <120725381+Shivam-1827@users.noreply.github.com>
168171
Sachin Raj <120590207+schnrj@users.noreply.github.com>
169172
Sahil Goyal <87982509+sahil20021008@users.noreply.github.com>
@@ -186,6 +189,7 @@ Sivam Das <100067002+Sivam2313@users.noreply.github.com>
186189
Snehil Shah <snehilshah.989@gmail.com>
187190
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
188191
Spandan Barve <contact@marsian.dev>
192+
Srinivas Batthula <srinivasbatthula05.official@gmail.com>
189193
Stephannie Jiménez Gacha <steff456@hotmail.com>
190194
Suhaib Ilahi <suhaib.elahi87@gmail.com>
191195
Suraj Kumar <125961509+kumarsuraj212003@users.noreply.github.com>

test/test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ tape( 'the function returns `true` if a provided prototype is part of a value\'s
9696
bar = new Bar();
9797
bool = isPrototypeOf( bar, Foo.prototype );
9898

99-
t.strictEqual( bool, true, 'returns true' );
99+
t.strictEqual( bool, true, 'returns expected value' );
100100
t.strictEqual( bar instanceof Bar, true, 'is instance of Bar' );
101101
t.strictEqual( bar instanceof Foo, true, 'is instance of Foo' );
102102
t.end();
@@ -117,7 +117,7 @@ tape( 'the function returns `false` if a provided prototype is not part of a val
117117
bar = new Bar();
118118
bool = isPrototypeOf( bar, Foo.prototype );
119119

120-
t.strictEqual( bool, false, 'returns false' );
120+
t.strictEqual( bool, false, 'returns expected value' );
121121
t.strictEqual( bar instanceof Bar, true, 'is instance of Bar' );
122122
t.strictEqual( bar instanceof Foo, false, 'is not instance of Foo' );
123123
t.end();
@@ -146,7 +146,7 @@ tape( 'the function supports situations where constructors are never used', func
146146
t.throws( isInstance, TypeError, 'throws type error if using `instanceof`' );
147147

148148
bool = isPrototypeOf( v, superProto );
149-
t.strictEqual( bool, true, 'returns true' );
149+
t.strictEqual( bool, true, 'returns expected value' );
150150

151151
t.end();
152152

@@ -160,13 +160,13 @@ tape( 'the function returns `false` if provided primitives and their correspondi
160160
var bool;
161161

162162
bool = isPrototypeOf( true, Boolean.prototype );
163-
t.strictEqual( bool, false, 'returns false' );
163+
t.strictEqual( bool, false, 'returns expected value' );
164164

165165
bool = isPrototypeOf( 'beep', String.prototype );
166-
t.strictEqual( bool, false, 'returns false' );
166+
t.strictEqual( bool, false, 'returns expected value' );
167167

168168
bool = isPrototypeOf( 5, Number.prototype );
169-
t.strictEqual( bool, false, 'returns false' );
169+
t.strictEqual( bool, false, 'returns expected value' );
170170

171171
t.end();
172172
});

0 commit comments

Comments
 (0)