Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
dryajov committed Nov 22, 2017
1 parent 9e2539f commit e0f7efd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/exec.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
/* eslint-env mocha */
'use strict'

const expect = require('chai').expect
const chai = require('chai')
const dirtyChai = require('dirty-chai')
const expect = chai.expect
chai.use(dirtyChai)

const isrunning = require('is-running')
const cp = require('child_process')
const path = require('path')
Expand Down Expand Up @@ -57,7 +61,7 @@ function makeCheck (n, done) {
// exiting as it once was when the test was designed
// - [ ] Need test vector or figure out why tail changed
// Ref: https://github.com/ipfs/js-ipfsd-ctl/pull/160#issuecomment-325669206
describe.skip('exec', () => {
describe('exec', () => {
it('SIGTERM kills hang', (done) => {
const tok = token()

Expand Down

0 comments on commit e0f7efd

Please sign in to comment.