@ruvyxa/testing 1.0.31 → 1.1.0
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 +19 -3
- package/package.json +22 -7
package/README.md
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://github.com/thirawat27/Ruvyxa">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/thirawat27/Ruvyxa/main/assets/branding/ruvyxa.png" alt="Ruvyxa" width="140" height="140" />
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
2
6
|
|
|
3
|
-
|
|
4
|
-
|
|
7
|
+
<h1 align="center">@ruvyxa/testing</h1>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
Small framework-shaped test doubles for Ruvyxa loaders, actions, and caches. They run in Node,<br/>
|
|
11
|
+
Vitest, or Jest without starting a Ruvyxa server.
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
<p align="center">
|
|
15
|
+
<a href="https://www.npmjs.com/package/@ruvyxa/testing"><img src="https://img.shields.io/npm/v/@ruvyxa/testing?style=flat-square" alt="npm version" /></a>
|
|
16
|
+
<a href="https://www.npmjs.com/package/@ruvyxa/testing"><img src="https://img.shields.io/node/v/@ruvyxa/testing?style=flat-square&label=node" alt="Supported Node version" /></a>
|
|
17
|
+
<img src="https://img.shields.io/badge/license-Apache%202.0-green?style=flat-square" alt="License" />
|
|
18
|
+
</p>
|
|
19
|
+
|
|
20
|
+
---
|
|
5
21
|
|
|
6
22
|
```ts
|
|
7
23
|
import { mockAction, mockCache, mockLoader } from '@ruvyxa/testing'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruvyxa/testing",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Framework-native loader, action, and cache test doubles for Ruvyxa applications.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -14,19 +14,34 @@
|
|
|
14
14
|
"keywords": [
|
|
15
15
|
"ruvyxa",
|
|
16
16
|
"testing",
|
|
17
|
+
"test",
|
|
18
|
+
"tests",
|
|
19
|
+
"test-utils",
|
|
17
20
|
"vitest",
|
|
18
21
|
"jest",
|
|
19
|
-
"
|
|
22
|
+
"unit-testing",
|
|
23
|
+
"mock",
|
|
24
|
+
"mocks",
|
|
25
|
+
"mocking",
|
|
26
|
+
"test-doubles",
|
|
27
|
+
"loaders",
|
|
28
|
+
"server-actions",
|
|
29
|
+
"cache",
|
|
30
|
+
"tdd",
|
|
31
|
+
"developer-tools",
|
|
32
|
+
"typescript",
|
|
33
|
+
"fullstack",
|
|
34
|
+
"framework"
|
|
20
35
|
],
|
|
21
36
|
"repository": {
|
|
22
37
|
"type": "git",
|
|
23
|
-
"url": "git+https://github.com/thirawat27/
|
|
38
|
+
"url": "git+https://github.com/thirawat27/Ruvyxa.git",
|
|
24
39
|
"directory": "packages/@ruvyxa/testing"
|
|
25
40
|
},
|
|
26
41
|
"bugs": {
|
|
27
|
-
"url": "https://github.com/thirawat27/
|
|
42
|
+
"url": "https://github.com/thirawat27/Ruvyxa/issues"
|
|
28
43
|
},
|
|
29
|
-
"homepage": "https://github.com/thirawat27/
|
|
44
|
+
"homepage": "https://github.com/thirawat27/Ruvyxa#readme",
|
|
30
45
|
"engines": {
|
|
31
46
|
"node": ">=24.19.0"
|
|
32
47
|
},
|
|
@@ -34,10 +49,10 @@
|
|
|
34
49
|
"access": "public"
|
|
35
50
|
},
|
|
36
51
|
"peerDependencies": {
|
|
37
|
-
"@ruvyxa/core": "^1.0
|
|
52
|
+
"@ruvyxa/core": "^1.1.0"
|
|
38
53
|
},
|
|
39
54
|
"devDependencies": {
|
|
40
|
-
"@ruvyxa/core": "^1.0
|
|
55
|
+
"@ruvyxa/core": "^1.1.0"
|
|
41
56
|
},
|
|
42
57
|
"exports": {
|
|
43
58
|
".": {
|