mirror of
https://github.com/wuchangming/spy-debugger.git
synced 2026-01-25 14:44:03 +00:00
7 lines
188 B
JavaScript
7 lines
188 B
JavaScript
const child_process = require('child_process')
|
|
describe("spy-debugger", function() {
|
|
it('`lib` should be ok', function () {
|
|
child_process.exec('node ./lib/index.js')
|
|
})
|
|
})
|