@granito/vitest-marbles 1.0.0-dev.1 → 1.0.0-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@ clean way.
|
|
|
16
16
|
|
|
17
17
|
# Prerequisites
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
* Vitest;
|
|
20
|
+
* RxJS;
|
|
21
|
+
* familiarity with
|
|
22
22
|
[marbles syntax](https://rxjs.dev/guide/testing/marble-testing).
|
|
23
23
|
|
|
24
24
|
# Not supported
|
|
@@ -28,7 +28,7 @@ clean way.
|
|
|
28
28
|
# Usage
|
|
29
29
|
|
|
30
30
|
```shell
|
|
31
|
-
npm install --save-
|
|
31
|
+
npm install --save-dev @granito/vitest-marbles
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
In the test file:
|
|
@@ -202,3 +202,8 @@ Allows you to schedule task on specified frame.
|
|
|
202
202
|
expect(source).toBeObservable(expected);
|
|
203
203
|
});
|
|
204
204
|
```
|
|
205
|
+
|
|
206
|
+
# Credits
|
|
207
|
+
|
|
208
|
+
This repository has been forked from <https://github.com/just-jeb/jest-marbles>
|
|
209
|
+
by _Jenia "JeB" Barabanov_ and updated to use Vitest instead of Jest.
|