wao 0.22.0 → 0.22.1
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/cjs/test.js +6 -0
- package/esm/test.js +2 -1
- package/package.json +1 -1
package/cjs/test.js
CHANGED
|
@@ -103,6 +103,12 @@ Object.defineProperty(exports, "su", {
|
|
|
103
103
|
return _accounts.su;
|
|
104
104
|
}
|
|
105
105
|
});
|
|
106
|
+
Object.defineProperty(exports, "wait", {
|
|
107
|
+
enumerable: true,
|
|
108
|
+
get: function get() {
|
|
109
|
+
return _utils.wait;
|
|
110
|
+
}
|
|
111
|
+
});
|
|
106
112
|
var _fs = require("fs");
|
|
107
113
|
var _path = require("path");
|
|
108
114
|
var _accounts = require("./accounts.js");
|
package/esm/test.js
CHANGED
|
@@ -6,7 +6,7 @@ import AO from "./tao.js"
|
|
|
6
6
|
import AR from "./tar.js"
|
|
7
7
|
import GQL from "./tgql.js"
|
|
8
8
|
import ArMem from "./armem.js"
|
|
9
|
-
import { dirname } from "./utils.js"
|
|
9
|
+
import { dirname, wait } from "./utils.js"
|
|
10
10
|
import { Testnet, Src, setup, ok, fail } from "./helpers.js"
|
|
11
11
|
import Server from "./server.js"
|
|
12
12
|
import Adaptor from "./adaptor.js"
|
|
@@ -18,6 +18,7 @@ const scheduler = "_GQ33BkPtZrqxA84vM8Zk-N2aO0toNNu_C-l-rawrBA"
|
|
|
18
18
|
const HyperBEAM = "./hyperbeam.js"
|
|
19
19
|
|
|
20
20
|
export {
|
|
21
|
+
wait,
|
|
21
22
|
HyperBEAM,
|
|
22
23
|
Adaptor,
|
|
23
24
|
Testnet,
|