mirror of
https://github.com/liriliri/eruda.git
synced 2026-02-02 09:49:00 +08:00
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)
|
|
})
|
|
})
|
|
})
|