/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
tests/System/integration/cli/Finder.cy.js
13 строк
483 B
Nicola Galgano
cli command test for finder (#45126)
13 мар 2025, 21:09
Не верифицирован
13 мар 2025, 21:09
0ecd539
Код
Авторство
О чём код?
describe('Test that console command finder', () => { it('can index content', () => { cy.exec(`php ${Cypress.env('cmsPath')}/cli/joomla.php finder:index`) .its('stdout') .should('contain', 'Total Processing Time'); }); it('can purge and index content', () => { cy.exec(`php ${Cypress.env('cmsPath')}/cli/joomla.php finder:index purge`) .its('stdout') .should('contain', 'Clear index') .should('contain', 'Total Processing Time'); }); });