Skip to content

Commit

Permalink
Testing script for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
pboyer committed Oct 21, 2015
1 parent 26c14d9 commit 8f78cc4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/testCore.js
@@ -1,7 +1,9 @@
var should = require('should')
, verb = require('../build/js/verb.js');

console.log(verb);
var fs = require('fs');
var f = fs.readFileSync(process.cwd() + '/build/js/verb.js', 'utf8');
console.log( f.slice(-300, -1) );

// necessary for multi-threading
verb.exe.WorkerPool.basePath = process.cwd() + "/build/js/";
Expand Down

0 comments on commit 8f78cc4

Please sign in to comment.