@agoric/swingset-vat 0.32.3-dev-c0c733c.0 → 0.32.3-dev-0cd32a5.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/package.json +12 -12
- package/tools/prepare-strict-test-env-ava.js +19 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/swingset-vat",
|
|
3
|
-
"version": "0.32.3-dev-
|
|
3
|
+
"version": "0.32.3-dev-0cd32a5.0+0cd32a5",
|
|
4
4
|
"description": "Vat/Container Launcher",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"@types/yargs-parser": "^21.0.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@agoric/internal": "0.3.3-dev-
|
|
31
|
-
"@agoric/kmarshal": "0.1.1-dev-
|
|
32
|
-
"@agoric/store": "0.9.3-dev-
|
|
33
|
-
"@agoric/swing-store": "0.9.2-dev-
|
|
34
|
-
"@agoric/swingset-liveslots": "0.10.3-dev-
|
|
35
|
-
"@agoric/swingset-xsnap-supervisor": "0.10.3-dev-
|
|
36
|
-
"@agoric/time": "0.3.3-dev-
|
|
37
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
38
|
-
"@agoric/xsnap": "0.14.3-dev-
|
|
39
|
-
"@agoric/xsnap-lockdown": "0.14.1-dev-
|
|
30
|
+
"@agoric/internal": "0.3.3-dev-0cd32a5.0+0cd32a5",
|
|
31
|
+
"@agoric/kmarshal": "0.1.1-dev-0cd32a5.0+0cd32a5",
|
|
32
|
+
"@agoric/store": "0.9.3-dev-0cd32a5.0+0cd32a5",
|
|
33
|
+
"@agoric/swing-store": "0.9.2-dev-0cd32a5.0+0cd32a5",
|
|
34
|
+
"@agoric/swingset-liveslots": "0.10.3-dev-0cd32a5.0+0cd32a5",
|
|
35
|
+
"@agoric/swingset-xsnap-supervisor": "0.10.3-dev-0cd32a5.0+0cd32a5",
|
|
36
|
+
"@agoric/time": "0.3.3-dev-0cd32a5.0+0cd32a5",
|
|
37
|
+
"@agoric/vat-data": "0.5.3-dev-0cd32a5.0+0cd32a5",
|
|
38
|
+
"@agoric/xsnap": "0.14.3-dev-0cd32a5.0+0cd32a5",
|
|
39
|
+
"@agoric/xsnap-lockdown": "0.14.1-dev-0cd32a5.0+0cd32a5",
|
|
40
40
|
"@endo/base64": "^1.0.7",
|
|
41
41
|
"@endo/bundle-source": "^3.4.0",
|
|
42
42
|
"@endo/captp": "^4.3.0",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"typeCoverage": {
|
|
104
104
|
"atLeast": 75.81
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "0cd32a59f24dbea365f80be5ac3880db9234e4d1"
|
|
107
107
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Like prepare-strict-test-env but also sets up ses-ava and provides
|
|
3
|
+
* the ses-ava `test` function to be used as if it is the ava
|
|
4
|
+
* `test` function.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import '@agoric/swingset-liveslots/tools/prepare-strict-test-env.js';
|
|
8
|
+
|
|
9
|
+
import { wrapTest } from '@endo/ses-ava';
|
|
10
|
+
import rawTest from 'ava';
|
|
11
|
+
|
|
12
|
+
export * from '@agoric/swingset-liveslots/tools/prepare-strict-test-env.js';
|
|
13
|
+
|
|
14
|
+
export const test = wrapTest(rawTest);
|
|
15
|
+
|
|
16
|
+
// Does not import from a module because we're testing the global env
|
|
17
|
+
/* global globalThis */
|
|
18
|
+
export const VatData = globalThis.VatData;
|
|
19
|
+
assert(VatData);
|