1
0
mirror of synced 2025-12-11 17:08:00 +08:00
Files
eruda/test/sources.js
2022-12-11 00:44:15 +08:00

14 lines
295 B
JavaScript

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