Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@tsparticles/cli": "^3.0.10",
"@tsparticles/cli": "^3.0.11",
"@tsparticles/engine": "^3.9.1",
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.8",
Expand Down
77 changes: 7 additions & 70 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default defineConfig({
globals: true,
environment: "node",
include: ["tests/**/*.test.ts"],
testTimeout: 60000
testTimeout: 5 * 60 * 1000
Copy link

Copilot AI Dec 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change increases the test timeout from 60 seconds (60000ms) to 5 minutes (300000ms). If the intention was to simply make the timeout value more readable by using an expression, the equivalent would be "1 * 60 * 1000" or "60 * 1000". Please verify that this 5x increase in timeout is intentional.

Suggested change
testTimeout: 5 * 60 * 1000
testTimeout: 60 * 1000

Copilot uses AI. Check for mistakes.
}
});

Loading