feat: add registry - background, blur, sharpen

This commit is contained in:
2026-08-24 07:33:41 +05:00
parent fd5236c19b
commit c14301130f
3 changed files with 65 additions and 3 deletions
+5 -2
View File
@@ -58,11 +58,14 @@ const PLAN_TOOL_IDS = [
'linear-gradient-png',
'png-is-grayscale',
'png-is-transparent',
'png-orientation'
'png-orientation',
'remove-background-png',
'blur-png',
'sharpen-png'
];
describe('реестр инструментов', () => {
it('содержит ровно 48 инструментов из плана', () => {
it('содержит ровно 51 инструмент из плана', () => {
expect(TOOLS.map((t) => t.id).sort()).toEqual([...PLAN_TOOL_IDS].sort());
});