feat: tool-first workflow polish -- fix tests, lint cleanup

- Remove obsolete fullscreen redirect test (route deleted in Task 3)
- Update dropzone test strings to match new i18n values
- Fix categories count in i18n locale test (12 -> 24)
- Add chart-maker to no-dropzone exempt list in tool-registry test
- Auto-fix import ordering (Biome) in popular tools route and landing config
This commit is contained in:
SnapOtter
2026-06-14 19:44:58 +08:00
parent bc3ad2b008
commit f387e98fff
7 changed files with 23 additions and 170 deletions
+1 -1
View File
@@ -375,7 +375,7 @@ describe("toolRegistry", () => {
});
it("tools with no-dropzone display mode have a ResultsPanel", () => {
const selfContainedTools = new Set(["meme-generator", "barcode-generate"]);
const selfContainedTools = new Set(["meme-generator", "barcode-generate", "chart-maker"]);
for (const [toolId, entry] of toolRegistry) {
if (entry.displayMode === "no-dropzone" && !selfContainedTools.has(toolId)) {
expect(entry.ResultsPanel, `missing ResultsPanel for ${toolId}`).toBeDefined();