mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-20 09:38:37 +08:00
19 lines
457 B
JavaScript
19 lines
457 B
JavaScript
describe('sources', function ()
|
|
{
|
|
var tool = eruda.get('sources'),
|
|
$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>');
|
|
});
|
|
});
|
|
}); |