1
0
mirror of synced 2025-11-06 04:21:11 +08:00
Files
eruda/test/sources.js
2019-11-17 22:16:28 +08:00

18 lines
360 B
JavaScript

describe('sources', function() {
let tool = eruda.get('sources')
let $tool = $('.eruda-sources')
beforeEach(function() {
eruda.show('sources')
})
describe('js', function() {
it('highlight', function() {
tool.set('js', '/* test */')
expect($tool.find('.eruda-content')).toContainHtml(
'/* test */'
)
})
})
})