Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit 355d63f

Browse files
committed
chore: linting
1 parent 81ad364 commit 355d63f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/interop/test/fixtures/create-helia.browser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { noise } from '@chainsafe/libp2p-noise'
22
import { yamux } from '@chainsafe/libp2p-yamux'
3+
import { identify } from '@libp2p/identify'
34
import { webSockets } from '@libp2p/websockets'
45
import { all } from '@libp2p/websockets/filters'
56
import { MemoryBlockstore } from 'blockstore-core'
67
import { MemoryDatastore } from 'datastore-core'
78
import { createHelia } from 'helia'
89
import { createLibp2p, type Libp2pOptions } from 'libp2p'
9-
import { identify } from '@libp2p/identify'
1010
import type { Helia } from '@helia/interface'
1111

1212
export async function createHeliaNode (config: Libp2pOptions = {}): Promise<Helia> {

packages/interop/test/fixtures/create-helia.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { noise } from '@chainsafe/libp2p-noise'
22
import { yamux } from '@chainsafe/libp2p-yamux'
3+
import { identify } from '@libp2p/identify'
34
import { tcp } from '@libp2p/tcp'
45
import { MemoryBlockstore } from 'blockstore-core'
56
import { MemoryDatastore } from 'datastore-core'
67
import { createHelia } from 'helia'
78
import { createLibp2p, type Libp2pOptions } from 'libp2p'
8-
import { identify } from '@libp2p/identify'
99
import type { Helia } from '@helia/interface'
1010

1111
export async function createHeliaNode (config: Libp2pOptions = {}): Promise<Helia> {

packages/interop/test/strings.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
import { strings, type Strings, type AddOptions } from '@helia/strings'
44
import { expect } from 'aegir/chai'
5+
import { CID } from 'multiformats/cid'
56
import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string'
67
import { toString as uint8ArrayToString } from 'uint8arrays/to-string'
78
import { createHeliaNode } from './fixtures/create-helia.js'
89
import { createKuboNode } from './fixtures/create-kubo.js'
910
import type { Helia } from '@helia/interface'
1011
import type { PutOptions as KuboAddOptions } from 'ipfs-core-types/src/block/index.js'
1112
import type { Controller } from 'ipfsd-ctl'
12-
import { CID } from 'multiformats/cid'
1313

1414
describe('strings interop', () => {
1515
let helia: Helia

0 commit comments

Comments
 (0)