File tree 1 file changed +23
-4
lines changed
1 file changed +23
-4
lines changed Original file line number Diff line number Diff line change 1
-
2
1
# tinyspy
3
2
4
3
> minimal fork of nanospy, with more features 🕵🏻♂️
@@ -60,19 +59,39 @@ console.log(spied.calls) // []
60
59
console .log (spied .returns ) // []
61
60
```
62
61
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 :
64
63
65
64
``` js
66
65
const spied = spy (async (n ) => n + ' !' )
67
66
68
67
const promise = spied (' a' )
69
68
70
69
console .log (spied .called ) // true
71
- console .log (spied .returns ) // [Promise<'a!'>]
70
+ console .log (spied .results ) // ['ok', Promise<'a!'>]
72
71
73
72
await promise
74
73
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!']
76
95
```
77
96
78
97
### spyOn
You can’t perform that action at this time.
0 commit comments