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

Commit d48c260

Browse files
committed
chore: appease linter
License: MIT Signed-off-by: Alan Shaw <[email protected]>
1 parent 05886d0 commit d48c260

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

test/cid-version-agnostic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('CID version agnostic', () => {
1919
before(async function () {
2020
this.timeout(50 * 1000)
2121

22-
const [ js0, js1, go0, go1 ] = await Promise.all([
22+
const [js0, js1, go0, go1] = await Promise.all([
2323
spawnInitAndStartJsDaemon(),
2424
spawnInitAndStartJsDaemon(),
2525
spawnInitAndStartGoDaemon(),

test/exchange-files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function createGo (cb) {
129129
}
130130

131131
describe('exchange files', () => {
132-
let tests = {
132+
const tests = {
133133
'go -> js': [createGo, createJs],
134134
'go -> go2': [createGo, createGo],
135135
'js -> go': [createJs, createGo],

test/ipns-pubsub.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ describe('ipns-pubsub', () => {
9999
nodes[0].api.swarm.connect(ids[1].addresses[0], (err) => {
100100
expect(err).to.not.exist()
101101

102+
// eslint-disable-next-line no-console
102103
console.log('wait for republish as we can receive the republish message first')
103104
setTimeout(done, 60000) // wait for republish as we can receive the republish message first
104105
})

test/pubsub.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function createGo () {
4444
}
4545

4646
describe('pubsub', function () {
47-
let tests = {
47+
const tests = {
4848
'publish from Go, subscribe on Go': [createGo, createGo],
4949
'publish from JS, subscribe on JS': [createJs, createJs],
5050
'publish from JS, subscribe on Go': [createJs, createGo],

0 commit comments

Comments
 (0)