mirror of https://github.com/sveltejs/svelte
parent
9acef10d48
commit
daede43653
@ -0,0 +1,10 @@
|
||||
export default {
|
||||
skip_if_hydrate_from_ssr: true,
|
||||
skip_if_hydrate: true,
|
||||
skip_if_ssr: true,
|
||||
|
||||
test({ assert, target }) {
|
||||
const input = target.querySelector('input');
|
||||
assert.equal(input.value.length > 100_000, true);
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
@ -0,0 +1,10 @@
|
||||
export default {
|
||||
skip_if_hydrate_from_ssr: true,
|
||||
skip_if_hydrate: true,
|
||||
skip_if_ssr: true,
|
||||
|
||||
test({ assert, target }) {
|
||||
const textarea = target.querySelector('textarea');
|
||||
assert.equal(textarea.value.length > 100_000, true);
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue