| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 1 1 1 1 1 1 | var assert = require('assert');
var lib = require('../lib');
it('should know the answer to life, the universe, and everything', function () {
assert.equal(lib.answerToLifeTheUniverseAndEverything(), 42);
});
describe('The End', function () {
it('should print something', function () {
lib.message();
});
});
|