Sha256: fb60a127dd303a0fd40889854f94c000167d2e52f588cb653135e22bffc65184
Contents?: true
Size: 566 Bytes
Versions: 3
Compression:
Stored size: 566 Bytes
Contents
process.mixin(require('sys')) require.paths.unshift('spec', 'JSPEC_ROOT/lib', 'lib') require('jspec') require('unit/spec.helper') require('yourlib') quit = process.exit print = puts readFile = function(path) { var result require('posix') .cat(path, "utf8") .addCallback(function(contents){ result = contents }) .addErrback(function(){ throw new Error("failed to read file `" + path + "'") }) .wait() return result } JSpec .exec('spec/unit/spec.js') .run({ reporter: JSpec.reporters.Terminal, fixturePath: 'spec/fixtures' }) .report()
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jspec-3.2.1 | templates/default/spec/node.js |
jspec-3.2.0 | templates/default/spec/node.js |
jspec-3.1.3 | templates/default/spec/node.js |