mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
fix: resolve 18 QA-discovered bugs across tools, previews, and the AI pipeline (#242)
Exhaustive QA sweep of all 157 tools. Fixes: CSP blob media, csv-excel ExcelJS interop, ocr-pdf segfault, chart-maker upload, non-PDF doc preview, RAW decode, merge-tool multi-file path, html-to-image chromium, ogv/wma/amr/ac3 preview fallbacks, meme/gif/stabilize codecs, nav+home a11y. Plus orphan-format and test-debt cleanup, the AI bundle build script, and a reusable Playwright QA harness under tests/qa/.
This commit is contained in:
@@ -214,8 +214,8 @@ describe("PLAN_FEATURES", () => {
|
||||
expect(PLAN_FEATURES.team).not.toContain("config_export_import");
|
||||
});
|
||||
|
||||
it("enterprise plan has all 18 features", () => {
|
||||
expect(PLAN_FEATURES.enterprise).toHaveLength(18);
|
||||
it("enterprise plan has all 19 features", () => {
|
||||
expect(PLAN_FEATURES.enterprise).toHaveLength(19);
|
||||
});
|
||||
|
||||
it("enterprise plan is a superset of team plan", () => {
|
||||
@@ -230,8 +230,8 @@ describe("PLAN_FEATURES", () => {
|
||||
});
|
||||
|
||||
describe("ENTERPRISE_FEATURES", () => {
|
||||
it("contains exactly 18 features", () => {
|
||||
expect(ENTERPRISE_FEATURES).toHaveLength(18);
|
||||
it("contains exactly 19 features", () => {
|
||||
expect(ENTERPRISE_FEATURES).toHaveLength(19);
|
||||
});
|
||||
|
||||
it("has no duplicate entries", () => {
|
||||
@@ -259,6 +259,7 @@ describe("ENTERPRISE_FEATURES", () => {
|
||||
"config_export_import",
|
||||
"upgrade_management",
|
||||
"admin_alerts",
|
||||
"distributed_tracing",
|
||||
];
|
||||
expect([...ENTERPRISE_FEATURES].sort()).toEqual([...expected].sort());
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user