This Tech.io runner works with a node project. Mocha will be launched in the root directory and the result will be sent back to Tech.io.
This node7.4 runner installs the dependencies using npm install
. The dependencies must be specified in the package.json
file at the project root as specified in the official documentation.
In order to use the current version of the runner in your project, edit the techio.yml
file and add the following lines to your project:
runner: techio/node-npm-runner:1.1.0-node-7.4
In this example, the student is asked to write a method toUpper()
(file uppercase.js
):
function toUpper(str) {
return str.toUpperCase();
}
module.exports = toUpper;
In order to test the answer, the following unit test is created (file tests/test.js
):
var toUpper = require('./uppercase.js');
var assert = require('assert');
it('should return HELLO', function() {
assert.equal('HELLO', toUpper('hello'));
});
it('should return WORLD', function() {
assert.equal('WORLD', toUpper('world'));
});
We include the unit testing library mocha in the package.json file:
{
"dependencies": {
"mocha": "*",
"should": ">= 0.0.1"
}
}
In the lesson, the unit test can be called using:
@[Test unittest: uppercase]({"stubs":["uppercase.js"], "command":"node_modules/mocha/bin/mocha test.js --reporter list"})
In the lesson, the unit test can be called using:
@[Test unittest: uppercase]({"stubs":["uppercase.js"], "command":"node_modules/mocha/bin/mocha test.js --reporter list"})
MIT