mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-03 09:53:40 +00:00
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
describe("iD.ui.modal", function () {
|
|
it('can be instantiated', function () {
|
|
var modal = iD.ui.modal()
|
|
.select('.content')
|
|
.text('foo');
|
|
expect(modal).to.be.ok;
|
|
});
|
|
});
|