Skip to content

Commit 0601ae7

Browse files
committed
feat: add package vitest-auto-spies
1 parent 4f5d8da commit 0601ae7

21 files changed

Lines changed: 3592 additions & 4 deletions

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# auto-spies monorepo
22

33
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
4+
45
[![All Contributors](https://img.shields.io/badge/all_contributors-15-orange.svg?style=flat-square)](#contributors-)
6+
57
<!-- ALL-CONTRIBUTORS-BADGE:END -->
68

79
Easy and type safe way to write spies for tests, for both sync and async (promises, Observables) returning methods.
@@ -12,13 +14,17 @@ This is the monorepo of:
1214
| -------------------- | ---------------------------------------------------------- | ------------------------------------------------------- |
1315
| [jasmine-auto-spies] | [![jasmine-auto-spies-status]][jasmine-auto-spies-package] | Easy and type safe way to write spies for jasmine tests |
1416
| [jest-auto-spies] | [![jest-auto-spies-status]][jest-auto-spies-package] | Easy and type safe way to write spies for jest tests |
17+
| [vitest-auto-spies] | [![vitest-auto-spies-status]][vitest-auto-spies-package] | Easy and type safe way to write spies for vitest tests |
1518

1619
[jasmine-auto-spies]: https://github.com/hirezio/auto-spies/tree/master/packages/jasmine-auto-spies
1720
[jasmine-auto-spies-status]: https://img.shields.io/npm/v/jasmine-auto-spies.svg
1821
[jasmine-auto-spies-package]: https://npmjs.com/package/jasmine-auto-spies
1922
[jest-auto-spies]: https://github.com/hirezio/auto-spies/tree/master/packages/jest-auto-spies
2023
[jest-auto-spies-status]: https://img.shields.io/npm/v/jest-auto-spies.svg
2124
[jest-auto-spies-package]: https://npmjs.com/package/jest-auto-spies
25+
[vitest-auto-spies]: https://github.com/hirezio/auto-spies/tree/master/packages/vitest-auto-spies
26+
[vitest-auto-spies-status]: https://img.shields.io/npm/v/vitest-auto-spies.svg
27+
[vitest-auto-spies-package]: https://npmjs.com/package/vitest-auto-spies
2228

2329
<br/>
2430

@@ -37,7 +43,8 @@ This is the monorepo of:
3743

3844
Want to contribute? Yayy! 🎉
3945

40-
Please read and follow our [Contributing Guidelines](CONTRIBUTING.md) to learn what are the right steps to take before contributing your time, effort and code.
46+
Please read and follow our [Contributing Guidelines](CONTRIBUTING.md) to learn what are the right steps to take before
47+
contributing your time, effort and code.
4148

4249
Thanks 🙏
4350

@@ -83,7 +90,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
8390

8491
<!-- ALL-CONTRIBUTORS-LIST:END -->
8592

86-
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
93+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification.
94+
Contributions of any kind welcome!
8795

8896
## License
8997

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"projectName": "auto-spies",
3+
"projectOwner": "hirezio",
4+
"repoType": "github",
5+
"repoHost": "https://github.com",
6+
"files": [
7+
"README.md",
8+
"../../README.md"
9+
],
10+
"imageSize": 100,
11+
"commit": true,
12+
"commitConvention": "angular",
13+
"contributors": [
14+
{
15+
"login": "shairez",
16+
"name": "Shai Reznik",
17+
"avatar_url": "https://avatars1.githubusercontent.com/u/1430726?v=4",
18+
"profile": "http://www.hirez.io/",
19+
"contributions": [
20+
"code",
21+
"doc",
22+
"ideas",
23+
"infra",
24+
"maintenance",
25+
"mentoring",
26+
"review",
27+
"test"
28+
]
29+
},
30+
{
31+
"login": "GuilleEneas",
32+
"name": "Guille Eneas Timón Grau",
33+
"avatar_url": "https://avatars0.githubusercontent.com/u/5407478?v=4",
34+
"profile": "https://github.com/GuilleEneas",
35+
"contributions": [
36+
"code",
37+
"test"
38+
]
39+
},
40+
{
41+
"login": "rainerhahnekamp",
42+
"name": "Rainer Hahnekamp",
43+
"avatar_url": "https://avatars.githubusercontent.com/u/5721205?v=4",
44+
"profile": "https://www.rainerhahnekamp.com",
45+
"contributions": [
46+
"maintenance"
47+
]
48+
}
49+
],
50+
"contributorsPerLine": 7
51+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
coverage
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Change Log

0 commit comments

Comments
 (0)