15 lines
279 B
JavaScript
15 lines
279 B
JavaScript
describe('elements', function () {
|
|
let tool = eruda.get('elements')
|
|
let $tool = $('.eruda-elements')
|
|
|
|
beforeEach(function () {
|
|
eruda.show('elements')
|
|
})
|
|
|
|
describe('api', function () {
|
|
it('set element', function () {
|
|
tool.set(document.body)
|
|
})
|
|
})
|
|
})
|