Files
iD/test/spec/ui/flash.js
2020-03-20 13:43:07 -07:00

37 lines
1.1 KiB
JavaScript

describe('iD.uiFlash', function () {
beforeEach(function() {
d3.select('body')
.append('div')
.attr('class', 'flash-wrap')
.append('div')
.attr('class', 'main-footer-wrap');
});
afterEach(function() {
d3.select('.flash-wrap')
.remove();
});
it('flash is shown', function() {
iD.uiFlash().duration(200)();
var flashWrap = d3.selectAll('.flash-wrap');
var footerWrap = d3.selectAll('.main-footer-wrap');
expect(flashWrap.classed('footer-show')).to.be.ok;
expect(footerWrap.classed('footer-hide')).to.be.ok;
});
it('flash goes away', function(done) {
iD.uiFlash().duration(200)();
window.setTimeout(function() {
d3.timerFlush();
var flashWrap = d3.selectAll('.flash-wrap');
var footerWrap = d3.selectAll('.main-footer-wrap');
expect(flashWrap.classed('footer-hide')).to.be.ok;
expect(footerWrap.classed('footer-show')).to.be.ok;
done();
}, 225);
});
});