diff --git a/test/runtime/samples/svg-crazy-attributes/_config.js b/test/runtime/samples/svg-crazy-attributes/_config.js new file mode 100644 index 0000000000..7968763b51 --- /dev/null +++ b/test/runtime/samples/svg-crazy-attributes/_config.js @@ -0,0 +1,10 @@ +export default { + skip_if_hydrate_from_ssr: true, + skip_if_hydrate: true, + skip_if_ssr: true, + + test({ assert, target }) { + const image = target.querySelector('image'); + assert.equal(image.tagName, "IMAGE"); + } +}; diff --git a/test/runtime/samples/svg-crazy-attributes/main.svelte b/test/runtime/samples/svg-crazy-attributes/main.svelte new file mode 100644 index 0000000000..b476079db2 --- /dev/null +++ b/test/runtime/samples/svg-crazy-attributes/main.svelte @@ -0,0 +1 @@ + \ No newline at end of file