Add EPUB format to Zotero.MIME

This commit is contained in:
Abe Jellinek 2023-06-26 15:48:04 -04:00 committed by Dan Stillman
parent d6547bab34
commit ba1b1b0639
3 changed files with 10 additions and 1 deletions

View file

@ -18,5 +18,9 @@ describe("Zotero.MIME", function () {
it("should detect SQLite database", async function () {
await test('test.sqlite', 'application/x-sqlite3');
});
it("should detect EPUB ebook", async function () {
await test('stub.epub', 'application/epub+zip');
});
});
});