Skip to content

Commit e3b3b2b

Browse files
committed
chore: fix test on Svelte 5
1 parent 3be33ba commit e3b3b2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/loader.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ describe('loader', () => {
270270
function(err, code, map) {
271271
expect(err).not.to.exist;
272272
if (isSvelte5Plus) {
273-
expect(code).to.contain('$$payload.out');
273+
expect(code).to.contain('$$renderer');
274274
} else {
275275
expect(code).to.contain('create_ssr_component');
276276
}

0 commit comments

Comments
 (0)