@helipod/test 0.1.0 → 0.1.3
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 +1 -1
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ an in-memory SQLite database, so your query/mutation/action tests exercise real
|
|
|
6
6
|
a mocked `ctx.db`.
|
|
7
7
|
|
|
8
8
|
See **[`docs/enduser/testing.md`](../../docs/enduser/testing.md)** for the full guide (the 3-layer
|
|
9
|
-
testing model, usage, and
|
|
9
|
+
testing model, usage, and documented behavioral notes).
|
|
10
10
|
|
|
11
11
|
## Public API
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helipod/test",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "FSL-1.1-Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -18,23 +18,23 @@
|
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "tsup",
|
|
21
|
-
"test": "vitest run",
|
|
21
|
+
"test": "vitest run --testTimeout=60000 --hookTimeout=60000",
|
|
22
22
|
"typecheck": "tsc --noEmit",
|
|
23
23
|
"clean": "rm -rf dist .turbo"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@helipod/blobstore-fs": "0.1.
|
|
27
|
-
"@helipod/client": "0.1.
|
|
28
|
-
"@helipod/component": "0.1.
|
|
29
|
-
"@helipod/docstore": "0.1.
|
|
30
|
-
"@helipod/docstore-sqlite": "0.1.
|
|
31
|
-
"@helipod/executor": "0.1.
|
|
32
|
-
"@helipod/id-codec": "0.1.
|
|
33
|
-
"@helipod/runtime-embedded": "0.1.
|
|
34
|
-
"@helipod/scheduler": "0.1.
|
|
35
|
-
"@helipod/storage": "0.1.
|
|
36
|
-
"@helipod/sync": "0.1.
|
|
37
|
-
"@helipod/values": "0.1.
|
|
26
|
+
"@helipod/blobstore-fs": "0.1.3",
|
|
27
|
+
"@helipod/client": "0.1.3",
|
|
28
|
+
"@helipod/component": "0.1.3",
|
|
29
|
+
"@helipod/docstore": "0.1.3",
|
|
30
|
+
"@helipod/docstore-sqlite": "0.1.3",
|
|
31
|
+
"@helipod/executor": "0.1.3",
|
|
32
|
+
"@helipod/id-codec": "0.1.3",
|
|
33
|
+
"@helipod/runtime-embedded": "0.1.3",
|
|
34
|
+
"@helipod/scheduler": "0.1.3",
|
|
35
|
+
"@helipod/storage": "0.1.3",
|
|
36
|
+
"@helipod/sync": "0.1.3",
|
|
37
|
+
"@helipod/values": "0.1.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^22.10.5",
|