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

Commit 446259b

Browse files
test(interop): fix file require
1 parent d1b2f5d commit 446259b

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

test/interop/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const crypto = require('crypto')
1111
const GoDaemon = require('./daemons/go')
1212
const JsDaemon = require('./daemons/js')
1313

14-
describe('interop', () => {
14+
describe('basic', () => {
1515
let goDaemon
1616
let jsDaemon
1717

test/interop/node.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
/* eslint-env mocha */
12
'use strict'
23

3-
require('./index')
4-
require('./repo')
4+
describe('interop', () => {
5+
require('./index')
6+
require('./repo')
7+
})

test/interop/repo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function catAndCheck (daemon, hash, data, callback) {
2323
}
2424

2525
// TODO: these are not working, will need to figure out why
26-
describe.skip('interop - repo', () => {
26+
describe.skip('repo', () => {
2727
it('read repo: go -> js', (done) => {
2828
const dir = os.tmpdir() + '/' + Math.ceil(Math.random() * 10000)
2929
const data = crypto.randomBytes(1024 * 5)
@@ -49,7 +49,7 @@ describe.skip('interop - repo', () => {
4949
], done)
5050
})
5151

52-
it.only('read repo: js -> go', (done) => {
52+
it('read repo: js -> go', (done) => {
5353
const dir = os.tmpdir() + '/' + Math.ceil(Math.random() * 10000)
5454
const data = crypto.randomBytes(1024 * 5)
5555

0 commit comments

Comments
 (0)