mirror of https://github.com/sveltejs/svelte
fix: avoid flushing sync with $inspect (#13239)
* fix: avoid flushing sync with $inspect * add testpull/13257/head
parent
3d256727bb
commit
36a73fa794
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: avoid flushing sync with $inspect
|
@ -0,0 +1,26 @@
|
|||||||
|
import { test } from '../../test';
|
||||||
|
import { flushSync } from 'svelte';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
async test({ assert, target, logs }) {
|
||||||
|
const [b1] = target.querySelectorAll('button');
|
||||||
|
flushSync(() => {
|
||||||
|
b1.click();
|
||||||
|
});
|
||||||
|
flushSync(() => {
|
||||||
|
b1.click();
|
||||||
|
});
|
||||||
|
assert.deepEqual(logs, [
|
||||||
|
'effect',
|
||||||
|
0,
|
||||||
|
'in-increment',
|
||||||
|
1,
|
||||||
|
'effect',
|
||||||
|
1,
|
||||||
|
'in-increment',
|
||||||
|
2,
|
||||||
|
'effect',
|
||||||
|
2
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,18 @@
|
|||||||
|
<script>
|
||||||
|
let count = $state(0);
|
||||||
|
|
||||||
|
function increment() {
|
||||||
|
count += 1;
|
||||||
|
console.log("in-increment", count);
|
||||||
|
}
|
||||||
|
|
||||||
|
$effect(() => {
|
||||||
|
console.log("effect", count);
|
||||||
|
});
|
||||||
|
|
||||||
|
$inspect(count);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<button onclick={increment}>
|
||||||
|
clicks: {count}
|
||||||
|
</button>
|
Loading…
Reference in new issue