File tree Expand file tree Collapse file tree
projects/imagekit-angular/src/lib/types Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import { Transformation } from '@imagekit/javascript' ;
1+ import type { Transformation } from '@imagekit/javascript' ;
22
33/**
44 * Re-export types from @imagekit/javascript for convenience
Original file line number Diff line number Diff line change @@ -12,10 +12,16 @@ const baseURL = `http://localhost:${PORT}`;
1212export default defineConfig ( {
1313 // Timeout per test
1414 timeout : 30 * 1000 ,
15+ // Global timeout for the entire test run (prevents infinite stalling)
16+ globalTimeout : 60 * 60 * 1000 , // 60 minutes
17+ // Expect timeout for assertions
18+ expect : {
19+ timeout : 5 * 1000 , // 5 seconds
20+ } ,
1521 // Test directory
1622 testDir : path . join ( __dirname , "e2e" ) ,
17- // If a test fails, retry it additional 2 times
18- retries : 2 ,
23+ // If a test fails, retry it only once
24+ retries : 1 ,
1925 // Artifacts folder where screenshots, videos, and traces are stored.
2026 outputDir : "test-results/" ,
2127
You can’t perform that action at this time.
0 commit comments