Skip to content

Commit

Permalink
fixup! test: add checks of uploads of very large number of Pages assets
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Jun 12, 2024
1 parent 1ff499e commit ea441c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ describe("pages project upload", () => {
it("should handle a very large number of assets", async () => {
const assets = new Set<string>();
// Create a large number of asset files to upload
for (let i = 0; i < 10_000; i++) {
for (let i = 0; i < 10_019; i++) {
const path = `file-${i}.txt`;
const content = `contents of file-${i}.txt`;
assets.add(content);
Expand Down

0 comments on commit ea441c2

Please sign in to comment.