Skip to content

Commit

Permalink
Update en10 file expectation in e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
audiodude committed Jun 14, 2024
1 parent fe05d80 commit 5fb439e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/e2e/en10.e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ await testAllRenders(parameters, async (outFiles) => {

for (const dump of outFiles) {
if (dump.nopic) {
// nopic has enough files
expect(dump.status.files.success).toBeGreaterThan(16)
expect(dump.status.files.success).toBeLessThan(25)
// nopic has enough files (this is just an estimate and can change
// with time, as new Mediwiki versions are released).
expect(dump.status.files.success).toBeGreaterThan(13)
expect(dump.status.files.success).toBeLessThan(22)
// nopic has enough redirects
expect(dump.status.redirects.written).toBeGreaterThan(480)
// nopic has 10 articles
Expand Down

0 comments on commit 5fb439e

Please sign in to comment.