14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
describe('elements', function () {
|
|
let tool = eruda.get('elements')
|
|
|
|
beforeEach(function () {
|
|
eruda.show('elements')
|
|
})
|
|
|
|
describe('api', function () {
|
|
it('select element', function () {
|
|
tool.select(document.body)
|
|
})
|
|
})
|
|
})
|