Files
iD/test/spec/ui/modal.js
Tom MacWright d159b37ab6 Fix tests
2013-02-05 12:10:05 -05:00

20 lines
440 B
JavaScript

describe("iD.ui.modal", function () {
var elem;
beforeEach(function() {
elem = d3.select('body').append('div');
});
afterEach(function() {
elem.remove();
});
it('can be instantiated', function() {
var modal = iD.ui.modal(elem)
.select('.content')
.text('foo');
expect(modal).to.be.ok;
happen.keydown(document, {keyCode: 27}); // dismiss
});
});