All files test4.js

90.91% Statements 10/11
100% Branches 0/0
75% Functions 3/4
90.91% Lines 10/11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24    1x 1x   1x 1x 1x 1x 1x     1x       1x 1x            
'use strict';
 
var assert = require('assert'),
    target = require('./target');
 
describe('target (tested by test1.js)', () => {
    it('should multiply correctly', function (done) { 
        assert.equal(9, target.multi(3, 3));
        assert.equal(6, target.multi(3, 2));
        done();
    });
 
    xit('should not show coverage info for test1.js', function(){
      console.log('test1.js is not included in coverage report');
    });
 
    it('should handle es2015 template string correctly', function () {
        assert.equal(`<div>
 <h1>test title</h1>
 <p>this is a test</p>
</div>`, target.string('test title', 'this is a test'));
    });
});