@@ -108,7 +108,7 @@ describe("Fetch Cards", () => {
108
108
109
109
// Check if stats card from deployment matches the stats card from local.
110
110
expect ( serverStatsSvg . data ) . toEqual ( localStatsCardSVG ) ;
111
- } , 7000 ) ;
111
+ } , 15000 ) ;
112
112
113
113
test ( "retrieve language card" , async ( ) => {
114
114
expect ( VERCEL_PREVIEW_URL ) . toBeDefined ( ) ;
@@ -133,7 +133,7 @@ describe("Fetch Cards", () => {
133
133
134
134
// Check if language card from deployment matches the local language card.
135
135
expect ( severLanguageSVG . data ) . toEqual ( localLanguageCardSVG ) ;
136
- } ) ;
136
+ } , 15000 ) ;
137
137
138
138
test ( "retrieve WakaTime card" , async ( ) => {
139
139
expect ( VERCEL_PREVIEW_URL ) . toBeDefined ( ) ;
@@ -153,7 +153,7 @@ describe("Fetch Cards", () => {
153
153
154
154
// Check if WakaTime card from deployment matches the local WakaTime card.
155
155
expect ( serverWakaTimeSvg . data ) . toEqual ( localWakaCardSVG ) ;
156
- } ) ;
156
+ } , 15000 ) ;
157
157
158
158
test ( "retrieve repo card" , async ( ) => {
159
159
expect ( VERCEL_PREVIEW_URL ) . toBeDefined ( ) ;
@@ -175,5 +175,5 @@ describe("Fetch Cards", () => {
175
175
176
176
// Check if Repo card from deployment matches the local Repo card.
177
177
expect ( serverRepoSvg . data ) . toEqual ( localRepoCardSVG ) ;
178
- } ) ;
178
+ } , 15000 ) ;
179
179
} ) ;