14 lines
269 B
JavaScript
14 lines
269 B
JavaScript
'use strict'
|
|
|
|
let loadIndicator = require('../../app/view/load-indicator')
|
|
|
|
describe('#loadIndicator()', function () {
|
|
|
|
it('should render', function () {
|
|
console.log(loadIndicator())
|
|
})
|
|
|
|
it('should emit a "show" event')
|
|
|
|
it('should emit a "hide" event')
|
|
})
|