pull/17026/head
Rich Harris 4 weeks ago
parent d1e0ee68d2
commit d875590d9c

@ -17,7 +17,7 @@ export default test({
'Detected reactivity loss when reading `values[1]`. This happens when state is read in an async function after an earlier `await`' 'Detected reactivity loss when reading `values[1]`. This happens when state is read in an async function after an earlier `await`'
); );
assert.equal(warnings[1].name, 'TracedAtError'); assert.equal(warnings[1].name, 'traced at');
assert.equal(warnings.length, 2); assert.equal(warnings.length, 2);
} }

@ -20,7 +20,7 @@ export default test({
'Detected reactivity loss when reading `b`. This happens when state is read in an async function after an earlier `await`' 'Detected reactivity loss when reading `b`. This happens when state is read in an async function after an earlier `await`'
); );
assert.equal(warnings[1].name, 'TracedAtError'); assert.equal(warnings[1].name, 'traced at');
assert.equal(warnings.length, 2); assert.equal(warnings.length, 2);
} }

@ -14,7 +14,7 @@ export default test({
try { try {
flushSync(() => button.click()); flushSync(() => button.click());
} catch (e) { } catch (e) {
assert.equal(errors.length, 1); // for whatever reason we can't get the name which should be UpdatedAtError assert.equal(errors.length, 1); // for whatever reason we can't get the name which should be 'updated at'
assert.ok(/** @type {Error} */ (e).message.startsWith('effect_update_depth_exceeded')); assert.ok(/** @type {Error} */ (e).message.startsWith('effect_update_depth_exceeded'));
} }
} }

Loading…
Cancel
Save