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.
1 parent c4a1657 commit 2194c7eCopy full SHA for 2194c7e
packages/svelte/tests/runtime-runes/samples/boundary-array-binding/_config.js
@@ -1,9 +1,8 @@
1
+// @ts-nocheck
2
export default {
- // 🔴 THIS IS THE KEY: Force production mode to trigger the bug
3
compileOptions: {
4
- dev: false,
5
- immutable: true // strict mode
6
- },
+ dev: false
+ },
7
async test({ assert, target, window }) {
8
// 1. Wait for the async await block to resolve
9
await Promise.resolve();
@@ -15,11 +14,11 @@ export default {
15
14
// 2. Simulate user typing "updated"
16
input.value = 'updated';
17
input.dispatchEvent(new window.Event('input'));
18
-
+
19
// 3. Wait for reactivity
20
21
22
// 4. Assert
23
assert.equal(p.innerHTML, 'Value: updated');
24
}
25
-};
+};
0 commit comments