express-live-reloading
Version:
Live reloading middleware express
22 lines (13 loc) • 437 B
JavaScript
const
{assert} = require('chai')
,expressLiveRelaodingTest = require('./../express-live-reloading')
;
describe('test `endpoint`' , () => {
it('should be an function' ,() => {
assert.isFunction( expressLiveRelaodingTest ) ;
} ) ;
const entryPoint = expressLiveRelaodingTest() ;
it('should return an function' , () => {
assert.isFunction( entryPoint ) ;
} ) ;
} ) ;