Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

fix: update all deps #199

Merged
merged 1 commit into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
"release": "aegir release"
},
"dependencies": {
"@libp2p/interface-connection": "^2.0.0",
"@libp2p/interface-connection": "^3.0.1",
"@libp2p/interface-transport": "^1.0.0",
"@libp2p/interfaces": "^3.0.2",
"@libp2p/logger": "^2.0.0",
Expand All @@ -148,8 +148,8 @@
"stream-to-it": "^0.2.2"
},
"devDependencies": {
"@libp2p/interface-mocks": "^3.0.1",
"@libp2p/interface-transport-compliance-tests": "^2.0.0",
"@libp2p/interface-mocks": "^4.0.1",
"@libp2p/interface-transport-compliance-tests": "^2.0.5",
"aegir": "^37.0.4",
"it-all": "^1.0.6",
"it-pipe": "^2.0.3",
Expand Down
6 changes: 3 additions & 3 deletions test/listen-dial.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ describe('dial', () => {
async (source) => await all(source)
)

expect(values[0]).to.equalBytes(uint8ArrayFromString('hey'))
expect(values[0].subarray()).to.equalBytes(uint8ArrayFromString('hey'))
await conn.close()
await listener.close()
})
Expand All @@ -190,7 +190,7 @@ describe('dial', () => {
stream,
async (source) => await all(source)
)
expect(values[0]).to.equalBytes(uint8ArrayFromString('hey'))
expect(values[0].subarray()).to.equalBytes(uint8ArrayFromString('hey'))
await conn.close()
await listener.close()
})
Expand Down Expand Up @@ -295,7 +295,7 @@ describe('dial', () => {
stream,
async (source) => await all(source)
)
expect(values[0]).to.equalBytes(uint8ArrayFromString('hey'))
expect(values[0].subarray()).to.equalBytes(uint8ArrayFromString('hey'))

await conn.close()
await listener.close()
Expand Down