Code coverage report for simple/mocha/test1.js

Statements: 100% (7 / 7)      Branches: 100% (0 / 0)      Functions: 100% (3 / 3)      Lines: 100% (7 / 7)      Ignored: none     

All files » simple/mocha/ » test1.js
1 2 3 4 5 6 7 8 9 10 11 12 13 141 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();
	});
});