We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e2539f commit e0f7efdCopy full SHA for e0f7efd
test/exec.spec.js
@@ -2,7 +2,11 @@
2
/* eslint-env mocha */
3
'use strict'
4
5
-const expect = require('chai').expect
+const chai = require('chai')
6
+const dirtyChai = require('dirty-chai')
7
+const expect = chai.expect
8
+chai.use(dirtyChai)
9
+
10
const isrunning = require('is-running')
11
const cp = require('child_process')
12
const path = require('path')
@@ -57,7 +61,7 @@ function makeCheck (n, done) {
57
61
// exiting as it once was when the test was designed
58
62
// - [ ] Need test vector or figure out why tail changed
59
63
// Ref: https://github.com/ipfs/js-ipfsd-ctl/pull/160#issuecomment-325669206
60
-describe.skip('exec', () => {
64
+describe('exec', () => {
65
it('SIGTERM kills hang', (done) => {
66
const tok = token()
67
0 commit comments