mirror of https://github.com/sveltejs/svelte
fix: reset `is_flushing` if `flushSync` is called and there's no scheduled effect (#16119)
parent
26e3286899
commit
fd08cb03de
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: reset `is_flushing` if `flushSync` is called and there's no scheduled effect
|
@ -0,0 +1,16 @@
|
|||||||
|
import { ok, test } from '../../test';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
async test({ assert, target }) {
|
||||||
|
const btn = target.querySelector('button');
|
||||||
|
const main = target.querySelector('main');
|
||||||
|
ok(main);
|
||||||
|
console.log(main.innerHTML);
|
||||||
|
assert.htmlEqual(main.innerHTML, `<div>true</div>`);
|
||||||
|
// we don't want to use flush sync (or tick that use it inside) since we are testing that calling `flushSync` once
|
||||||
|
// when there are no scheduled effects does not cause reactivity to break
|
||||||
|
btn?.click();
|
||||||
|
await Promise.resolve();
|
||||||
|
assert.htmlEqual(main.innerHTML, `<div>false</div> <div>false</div>`);
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,23 @@
|
|||||||
|
<script>
|
||||||
|
import { flushSync } from 'svelte'
|
||||||
|
|
||||||
|
let flag = $state(true)
|
||||||
|
let test = $state(true);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<button onclick={()=>{
|
||||||
|
flushSync(() => {
|
||||||
|
test = !test
|
||||||
|
})
|
||||||
|
|
||||||
|
flag = !flag;
|
||||||
|
}}>switch</button>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<div>{flag}</div>
|
||||||
|
|
||||||
|
{#if !flag}
|
||||||
|
<div>{test} </div>
|
||||||
|
{/if}
|
||||||
|
</main>
|
||||||
|
|
Loading…
Reference in new issue