Skip to content

Commit 53ece95

Browse files
committed
tighten up
1 parent 51adf52 commit 53ece95

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/svelte/tests/runtime-browser/driver.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ export default async function (target) {
2525
target,
2626
props: config.props,
2727
intro: config.intro,
28-
hydrate: __HYDRATE__
28+
hydrate: __HYDRATE__,
29+
recover: false
2930
},
3031
config.options || {}
3132
);

packages/svelte/tests/runtime-legacy/shared.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ async function run_test_variant(
261261
target,
262262
immutable: config.immutable,
263263
intro: config.intro,
264-
recover: config.recover === undefined ? false : config.recover,
264+
recover: config.recover ?? false,
265265
hydrate: variant === 'hydrate'
266266
});
267267

0 commit comments

Comments
 (0)