Update devDependencies and fix issues from this

- Point to npm released version of jasmine node runner
This commit is contained in:
Chris Amavisca
2016-07-19 19:01:14 -07:00
parent 99aa2247b6
commit 15f92b226c
5 changed files with 1124 additions and 1124 deletions

View File

@@ -5,9 +5,9 @@ describe('npm package', function() {
beforeAll(function() {
var shell = require('shelljs'),
pack = shell.exec('npm pack', { silent: true });
pack = shell.exec('npm pack', { silent: true});
this.tarball = pack.output.split('\n')[0];
this.tarball = pack.stdout.split('\n')[0];
this.tmpDir = temp.mkdirSync(); // automatically deleted on exit
var untar = shell.exec('tar -xzf ' + this.tarball + ' -C ' + this.tmpDir, { silent: true });