Skip to content

Commit 1b37529

Browse files
authored
docs: add section about resolves and removal of Promise unwrapping (#44)
1 parent 4610fe8 commit 1b37529

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

README.md

+23-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# tinyspy
32

43
> minimal fork of nanospy, with more features 🕵🏻‍♂️
@@ -60,19 +59,39 @@ console.log(spied.calls) // []
6059
console.log(spied.returns) // []
6160
```
6261

63-
If you have async implementation, you need to `await` the method to get awaited results (if you don't, you will get a `Promise` inside `results`):
62+
Since 3.0, tinyspy doesn't unwrap the Promise in `returns` and `results` anymore, so you need to await it manually:
6463

6564
```js
6665
const spied = spy(async (n) => n + '!')
6766

6867
const promise = spied('a')
6968

7069
console.log(spied.called) // true
71-
console.log(spied.returns) // [Promise<'a!'>]
70+
console.log(spied.results) // ['ok', Promise<'a!'>]
7271

7372
await promise
7473

75-
console.log(spied.returns) // ['a!']
74+
console.log(spied.results) // ['ok', Promise<'a!'>]
75+
76+
console.log(await spied.returns[0]) // 'a!'
77+
```
78+
79+
> [!WARNING]
80+
> This also means the function that returned a Promise will always have result type `'ok'` even if the Promise rejected
81+
82+
Tinyspy 3.0 still exposes resolved values on `resolves` property:
83+
84+
```js
85+
const spied = spy(async (n) => n + '!')
86+
87+
const promise = spied('a')
88+
89+
console.log(spied.called) // true
90+
console.log(spied.resolves) // [] <- not resolved yet
91+
92+
await promise
93+
94+
console.log(spied.resolves) // ['ok', 'a!']
7695
```
7796

7897
### spyOn

0 commit comments

Comments
 (0)