mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-20 09:38:37 +08:00
19 lines
373 B
JavaScript
19 lines
373 B
JavaScript
describe('features', function ()
|
|
{
|
|
var tool = eruda.get('features'),
|
|
$tool = $('.eruda-features');
|
|
|
|
beforeEach(function ()
|
|
{
|
|
eruda.show('features');
|
|
});
|
|
|
|
it('items', function (done)
|
|
{
|
|
setTimeout(function ()
|
|
{
|
|
expect($tool.find('li')).toHaveLength(45);
|
|
done();
|
|
}, 1000);
|
|
});
|
|
}); |