feat(tests): fully implemented test suite

This commit is contained in:
2025-05-26 05:16:32 +00:00
parent 1d52ce1211
commit 113ae22c42
40 changed files with 3747 additions and 37 deletions

View File

@ -28,7 +28,7 @@ tap.test('PDF-03: Factur-X Extraction - Basic ZUGFeRD v2 Extraction', async (too
// Check file accessibility
const fileExists = await plugins.fs.pathExists(testFile);
expect(fileExists).toBe(true);
expect(fileExists).toBeTrue();
const fileStats = await plugins.fs.stat(testFile);
tools.log(`File size: ${(fileStats.size / 1024).toFixed(1)}KB`);