fudi
Version:
101 ways to encode/decode FUDI
23 lines (19 loc) • 431 B
JavaScript
/*
---
script: runner.node.js
description: spec runner for node.js
license: MIT-style license
authors:
- Mark Obcena
...
*/
// Add sources to require path
require.paths.push(process.cwd() + '/../Source/');
// Initialize objects
var Testigo = require('testigo').Testigo,
Tests = new Testigo(),
Runner = new Testigo.Runners.Simple('node', Tests);
// Import test cases
require('./tests').setup(Tests);
// Run tests
Runner.run();