@libp2p/interface-compliance-tests 6.4.8-9f1be6742 → 6.4.8-b8600fce8
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/dist/src/transport/index.js +1 -1
- package/package.json +15 -15
- package/src/transport/index.ts +1 -1
|
@@ -159,7 +159,7 @@ export default (common) => {
|
|
|
159
159
|
expect(output).to.equalBytes(input);
|
|
160
160
|
});
|
|
161
161
|
it('should handle many small writes', async function () {
|
|
162
|
-
const timeout =
|
|
162
|
+
const timeout = 360_000;
|
|
163
163
|
this.timeout(timeout);
|
|
164
164
|
({ dialer, listener, dialAddrs } = await getSetup(common));
|
|
165
165
|
for (let i = 0; i < 2000; i++) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/interface-compliance-tests",
|
|
3
|
-
"version": "6.4.8-
|
|
3
|
+
"version": "6.4.8-b8600fce8",
|
|
4
4
|
"description": "Compliance tests for JS libp2p interfaces",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/interface-compliance-tests#readme",
|
|
@@ -97,21 +97,21 @@
|
|
|
97
97
|
"test:electron-main": "aegir test -t electron-main"
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
|
-
"@libp2p/crypto": "5.1.4-
|
|
101
|
-
"@libp2p/echo": "2.1.23-
|
|
102
|
-
"@libp2p/interface": "2.10.2-
|
|
103
|
-
"@libp2p/interface-internal": "2.3.14-
|
|
104
|
-
"@libp2p/logger": "5.1.18-
|
|
105
|
-
"@libp2p/memory": "1.1.9-
|
|
106
|
-
"@libp2p/multistream-select": "6.0.25-
|
|
107
|
-
"@libp2p/peer-collections": "6.0.30-
|
|
108
|
-
"@libp2p/peer-id": "5.1.5-
|
|
109
|
-
"@libp2p/plaintext": "2.0.25-
|
|
110
|
-
"@libp2p/utils": "6.6.5-
|
|
100
|
+
"@libp2p/crypto": "5.1.4-b8600fce8",
|
|
101
|
+
"@libp2p/echo": "2.1.23-b8600fce8",
|
|
102
|
+
"@libp2p/interface": "2.10.2-b8600fce8",
|
|
103
|
+
"@libp2p/interface-internal": "2.3.14-b8600fce8",
|
|
104
|
+
"@libp2p/logger": "5.1.18-b8600fce8",
|
|
105
|
+
"@libp2p/memory": "1.1.9-b8600fce8",
|
|
106
|
+
"@libp2p/multistream-select": "6.0.25-b8600fce8",
|
|
107
|
+
"@libp2p/peer-collections": "6.0.30-b8600fce8",
|
|
108
|
+
"@libp2p/peer-id": "5.1.5-b8600fce8",
|
|
109
|
+
"@libp2p/plaintext": "2.0.25-b8600fce8",
|
|
110
|
+
"@libp2p/utils": "6.6.5-b8600fce8",
|
|
111
111
|
"@multiformats/multiaddr": "^12.4.0",
|
|
112
112
|
"@multiformats/multiaddr-matcher": "^1.7.2",
|
|
113
113
|
"abortable-iterator": "^5.1.0",
|
|
114
|
-
"aegir": "^47.0.
|
|
114
|
+
"aegir": "^47.0.14",
|
|
115
115
|
"any-signal": "^4.1.1",
|
|
116
116
|
"delay": "^6.0.0",
|
|
117
117
|
"it-all": "^3.0.8",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"it-pushable": "^3.2.3",
|
|
126
126
|
"it-stream-types": "^2.0.2",
|
|
127
127
|
"it-to-buffer": "^4.0.9",
|
|
128
|
-
"libp2p": "2.8.8-
|
|
128
|
+
"libp2p": "2.8.8-b8600fce8",
|
|
129
129
|
"p-defer": "^4.0.1",
|
|
130
130
|
"p-event": "^6.0.1",
|
|
131
131
|
"p-limit": "^6.2.0",
|
|
@@ -138,6 +138,6 @@
|
|
|
138
138
|
"uint8arrays": "^5.1.0"
|
|
139
139
|
},
|
|
140
140
|
"devDependencies": {
|
|
141
|
-
"protons": "^7.6.
|
|
141
|
+
"protons": "^7.6.1"
|
|
142
142
|
}
|
|
143
143
|
}
|
package/src/transport/index.ts
CHANGED
|
@@ -241,7 +241,7 @@ export default (common: TestSetup<TransportTestFixtures>): void => {
|
|
|
241
241
|
})
|
|
242
242
|
|
|
243
243
|
it('should handle many small writes', async function () {
|
|
244
|
-
const timeout =
|
|
244
|
+
const timeout = 360_000
|
|
245
245
|
this.timeout(timeout);
|
|
246
246
|
({ dialer, listener, dialAddrs } = await getSetup(common))
|
|
247
247
|
|