18 lines
425 B
JavaScript
18 lines
425 B
JavaScript
|
'use strict'
|
||
|
|
||
|
//time-stamp for use when watching to distinguish reruns in console
|
||
|
// place in alpha first file only
|
||
|
let date = new Date(Date.now())
|
||
|
console.log(date.getMinutes(), "\:", date.getSeconds())
|
||
|
|
||
|
const expect = require('chai').expect,
|
||
|
lib = require('../')
|
||
|
|
||
|
describe('A template module ', function () {
|
||
|
|
||
|
it('Should ....', function () {
|
||
|
expect(lib.hello('Forest Gump')).to.equal('Hello Forest Gump')
|
||
|
})
|
||
|
|
||
|
})
|