1
0
mirror of synced 2025-12-08 14:54:02 +08:00
Files
eruda/test/sources.js
2020-11-21 20:35:38 +08:00

16 lines
348 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 */')
})
})
})