We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac24b58 commit dd8a8dfCopy full SHA for dd8a8df
src/report/utility/genHtml.ts
@@ -202,9 +202,10 @@ const html = async (
202
'https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js',
203
'https://unpkg.com/jquery@3.7.1/dist/jquery.min.js'
204
];
205
- for (const url of jqCdn) {
+ for (let i = 0; i < jqCdn.length; i++) {
206
+ const url = jqCdn[i];
207
try {
- await loadScriptOnce(url, 'jq-cdn');
208
+ await loadScriptOnce(url, 'jq-cdn-' + i);
209
} catch (e) {
210
console.error('[jQuery] Load failed', url, e);
211
}
0 commit comments