@agoric/async-flow 0.1.1-dev-e9efaa1.0.e9efaa1 → 0.1.1-dev-dda9926.0.dda9926
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 +10 -11
- package/test/async-flow-crank.test.js +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/async-flow",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-dda9926.0.dda9926",
|
|
4
4
|
"description": "Upgrade async functions at await points by replay",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/Agoric/agoric-sdk",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"author": "Agoric",
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@agoric/base-zone": "0.1.1-dev-
|
|
28
|
-
"@agoric/internal": "0.3.3-dev-
|
|
29
|
-
"@agoric/store": "0.9.3-dev-
|
|
30
|
-
"@agoric/vow": "0.1.1-dev-
|
|
27
|
+
"@agoric/base-zone": "0.1.1-dev-dda9926.0.dda9926",
|
|
28
|
+
"@agoric/internal": "0.3.3-dev-dda9926.0.dda9926",
|
|
29
|
+
"@agoric/store": "0.9.3-dev-dda9926.0.dda9926",
|
|
30
|
+
"@agoric/vow": "0.1.1-dev-dda9926.0.dda9926",
|
|
31
31
|
"@endo/common": "^1.2.13",
|
|
32
32
|
"@endo/errors": "^1.2.13",
|
|
33
33
|
"@endo/eventual-send": "^1.3.4",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"@endo/promise-kit": "^1.1.13"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@agoric/swingset-vat": "0.32.3-dev-
|
|
41
|
-
"@agoric/zone": "0.2.3-dev-
|
|
40
|
+
"@agoric/swingset-vat": "0.32.3-dev-dda9926.0.dda9926",
|
|
41
|
+
"@agoric/zone": "0.2.3-dev-dda9926.0.dda9926",
|
|
42
42
|
"@endo/env-options": "^1.1.11",
|
|
43
|
-
"ava": "^
|
|
43
|
+
"ava": "^6.4.1",
|
|
44
44
|
"tsd": "^0.33.0"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
@@ -56,11 +56,10 @@
|
|
|
56
56
|
"require": [
|
|
57
57
|
"@endo/init/debug.js"
|
|
58
58
|
],
|
|
59
|
-
"timeout": "20m"
|
|
60
|
-
"workerThreads": false
|
|
59
|
+
"timeout": "20m"
|
|
61
60
|
},
|
|
62
61
|
"typeCoverage": {
|
|
63
62
|
"atLeast": 77.35
|
|
64
63
|
},
|
|
65
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "dda9926e2d9f226773204c0d8211be4f5e8e96f9"
|
|
66
65
|
}
|
|
@@ -91,7 +91,8 @@ test.serial('test durable first-crank hazard 2', async t => {
|
|
|
91
91
|
await eventLoopIteration();
|
|
92
92
|
});
|
|
93
93
|
|
|
94
|
-
test.serial.
|
|
94
|
+
test.serial.skip('test durable first-crank hazard 3', async t => {
|
|
95
|
+
// TODO(#9377): This test demonstrates a crank bug. Re-enable when bug is fixed.
|
|
95
96
|
nextLife();
|
|
96
97
|
const zone3 = makeDurableZone(getBaggage(), 'durableRoot');
|
|
97
98
|
await testPlay3(t, zone3);
|