release: 0.2.0421.2

This commit is contained in:
2026-04-21 17:10:06 +08:00
parent 55324a5bb7
commit 968cc88c62
19 changed files with 2832 additions and 178 deletions
+7
View File
@@ -10,4 +10,11 @@ describe("manifest", () => {
])
);
});
test("declares the downloads permission and background worker for csv export", () => {
expect(manifest.permissions).toEqual(
expect.arrayContaining(["downloads"])
);
expect(manifest.background?.service_worker).toBe("background/index.js");
});
});