refactor: upgrade icon strings to structured objects

This commit is contained in:
N1C4T
2026-02-23 15:42:39 +04:00
parent f9c7435ed1
commit 3934ec0650
4 changed files with 58 additions and 32 deletions

View File

@@ -41,7 +41,8 @@ describe('Data Module', () => {
expect(app.name).toBeTruthy();
expect(app.description).toBeTruthy();
expect(app.category).toBeTruthy();
expect(app.iconUrl).toBeTruthy();
expect(app.icon).toBeDefined();
expect(app.icon.type).toBeTruthy();
expect(app.targets).toBeDefined();
});
});