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.
rendered
1 parent 403b17e commit ba237c7Copy full SHA for ba237c7
packages/svelte/tests/runtime-legacy/shared.ts
@@ -308,17 +308,11 @@ async function run_test_variant(
308
idPrefix: config.id_prefix
309
});
310
311
- fs.writeFileSync(
312
- `${cwd}/_output/rendered${templating_mode === 'functional' ? '-functional' : ''}.html`,
313
- html
314
- );
+ fs.writeFileSync(`${cwd}/_output/rendered.html`, html);
315
target.innerHTML = html;
316
317
if (head) {
318
319
- `${cwd}/_output/rendered_head${templating_mode === 'functional' ? '-functional' : ''}.html`,
320
- head
321
+ fs.writeFileSync(`${cwd}/_output/rendered_head.html`, head);
322
window.document.head.innerHTML = window.document.head.innerHTML + head;
323
}
324
0 commit comments