We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
В таком случае выводит нули: Total: 0 Passed: 0 Failed: 0 Skipped: 0 Retries: 0
Причем совершенно не важно, что написано в тесте - он просто не выполняется. Замечено на маке.
The text was updated successfully, but these errors were encountered:
#409 (comment)
Sorry, something went wrong.
Проблема в том, что если в пути есть скобки, то их нужно экранировать. Если этого не делать, то пакет fast-glob такой путь не найдет
fast-glob
Пример для воспроизведения (на файловой системе лежит файл 'tests(1)/example.hermione.js',):
'tests(1)/example.hermione.js',
const fg = require('fast-glob'); const result1 = await fg('tests(1)/example.hermione.js', {onlyFiles: false}); // получаем [] const result2 = await fg('tests\\(1\\)/example.hermione.js', {onlyFiles: false}); // получаем [ 'tests(1)/example.hermione.js' ]
Чтобы такого не происходило, нам нужно использовать метод escapePath
ps: нужно еще не забыть, что в сетах мы используем micromatch, который тоже не понимает скобки
DudaGod
No branches or pull requests
В таком случае выводит нули:
Total: 0 Passed: 0 Failed: 0 Skipped: 0 Retries: 0
Причем совершенно не важно, что написано в тесте - он просто не выполняется.
Замечено на маке.
The text was updated successfully, but these errors were encountered: