fx-compat: Convert import wizard to use CE

This commit is contained in:
Tom Najdek 2022-08-15 12:04:52 +02:00
parent 2820add3d1
commit 5ea43bd65c
No known key found for this signature in database
GPG key ID: EEC61A7B4C667D77
14 changed files with 683 additions and 570 deletions

View file

@ -2,7 +2,7 @@
describe('Zotero_Import_Folder', function () {
var tmpDir;
const uc = (name) => 'Zotero_Import_Folder_' + name;
const uc = name => 'Zotero_Import_Folder_' + name;
before(async () => {
tmpDir = await getTempDirectory();
@ -111,7 +111,7 @@ describe('Zotero_Import_Folder', function () {
const importer = new Zotero_Import_Folder({
folder: tmpDir,
recreateStructure: false,
fileTypes: '*.png,*.txt',
fileTypes: '*.png,*.TXT', // should match case-insensitively
mimeTypes: []
});