mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 10:12:09 +01:00
18 lines
446 B
TypeScript
18 lines
446 B
TypeScript
import { processQueuedImports } from './lib/importProcessor';
|
|
|
|
async function testImportProcessing() {
|
|
console.log('=== TESTING IMPORT PROCESSING ===\n');
|
|
|
|
try {
|
|
// Process with batch size of 50 to test multiple batches
|
|
await processQueuedImports(50);
|
|
|
|
console.log('\n=== IMPORT PROCESSING COMPLETED ===');
|
|
|
|
} catch (error) {
|
|
console.error('Error during import processing:', error);
|
|
}
|
|
}
|
|
|
|
testImportProcessing();
|