Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/skins/Vector/tests/jest/skins.vector.js/menuTabs.test.js
Ðазад
const menuTabs = require( '../../../resources/skins.vector.js/menuTabs.js' ); describe( 'menuTabs', () => { beforeEach( () => { /** @type {Function} */ let callback; jest.spyOn( mw, 'hook' ).mockImplementation( () => ( { add: function ( fn ) { callback = fn; return this; }, fire: ( data ) => { if ( callback ) { callback( data ); } } } ) ); } ); afterEach( () => { jest.restoreAllMocks(); } ); test( 'adds vector-tab-noicon class to li element when part of tabs', () => { document.body.innerHTML = ` <div id="p-views" class="vector-menu mw-portlet mw-portlet-views vector-menu-tabs"> <div class="vector-menu-content"> <ul class="vector-menu-content-list"> <li class="mw-list-item mw-list-item-js" id="test-id"> <a href="#test-href"> <span> test link content </span> </a> </li> </ul> </div> </div> `; const menuItem = document.getElementById( 'test-id' ); menuTabs(); mw.hook( 'util' ).fire( menuItem, { id: 'test-id' } ); expect( document.body.innerHTML ).toMatchSnapshot(); } ); test( 'does not add vector-tab-noicon class to li element when not part of tabs', () => { document.body.innerHTML = ` <div id="p-variants" class="vector-menu mw-portlet mw-portlet-variants"> <div class="vector-menu-content"> <ul class="vector-menu-content-list"> <li class="mw-list-item mw-list-item-js" id="test-id"> <a href="#test-href"> <span> test link content </span> </a> </li> </ul> </div> </div> `; const menuItem = document.getElementById( 'test-id' ); menuTabs(); mw.hook( 'util' ).fire( menuItem, { id: 'test-id' } ); expect( document.body.innerHTML ).toMatchSnapshot(); } ); } );
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка