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

Commit

Permalink
chore: appease linter
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Alan Shaw <alan@tableflip.io>
  • Loading branch information
alanshaw authored and Alan Shaw committed Jul 22, 2019
1 parent f74f7ce commit 329dcf6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/cid-version-agnostic.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('CID version agnostic', () => {
before(async function () {
this.timeout(50 * 1000)

const [ js0, js1, go0, go1 ] = await Promise.all([
const [js0, js1, go0, go1] = await Promise.all([
spawnInitAndStartJsDaemon(),
spawnInitAndStartJsDaemon(),
spawnInitAndStartGoDaemon(),
Expand Down
2 changes: 1 addition & 1 deletion test/exchange-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function createGo (cb) {
}

describe('exchange files', () => {
let tests = {
const tests = {
'go -> js': [createGo, createJs],
'go -> go2': [createGo, createGo],
'js -> go': [createJs, createGo],
Expand Down
1 change: 1 addition & 0 deletions test/ipns-pubsub.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ describe('ipns-pubsub', () => {
nodes[0].api.swarm.connect(ids[1].addresses[0], (err) => {
expect(err).to.not.exist()

// eslint-disable-next-line no-console
console.log('wait for republish as we can receive the republish message first')
setTimeout(done, 60000) // wait for republish as we can receive the republish message first
})
Expand Down
2 changes: 1 addition & 1 deletion test/pubsub.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function createGo () {
}

describe('pubsub', function () {
let tests = {
const tests = {
'publish from Go, subscribe on Go': [createGo, createGo],
'publish from JS, subscribe on JS': [createJs, createJs],
'publish from JS, subscribe on Go': [createJs, createGo],
Expand Down

0 comments on commit 329dcf6

Please sign in to comment.