Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/cmd.js')
-rw-r--r--test/cmd.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/cmd.js b/test/cmd.js
index abba4c2..ee8a87b 100644
--- a/test/cmd.js
+++ b/test/cmd.js
@@ -1,4 +1,5 @@
var cp = require('child_process')
+var spawn = require('cross-spawn-async')
var path = require('path')
var fs = require('fs')
var parseTorrent = require('parse-torrent')
@@ -84,7 +85,7 @@ test('Command line: webtorrent create /path/to/file', function (t) {
var leavesPath = path.resolve(__dirname, 'content', 'Leaves of Grass by Walt Whitman.epub')
- var child = cp.spawn('node', [ CMD_PATH, 'create', leavesPath ])
+ var child = spawn('node', [ CMD_PATH, 'create', leavesPath ])
child.on('error', function (err) { t.fail(err) })
var chunks = []