refactor: add error messages i18n

This commit is contained in:
2026-08-25 09:49:15 +05:00
parent c04a1fc1dc
commit 486b99dbb8
27 changed files with 262 additions and 94 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ describe('createStep', () => {
});
it('бросает ошибку для неизвестного инструмента', () => {
expect(() => createStep('no-such-tool')).toThrow(/не найден/);
expect(() => createStep('no-such-tool')).toThrow(/errors\.toolNotFound/);
});
});