1
0
mirror of synced 2025-12-09 07:08:17 +08:00
Files
eruda/test/sources.js
2018-08-20 16:45:35 +08:00

18 lines
396 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(
'<span style="color:#63a35c;">/* test */</span>'
)
})
})
})