Skip to content

Commit 7d63aa6

Browse files
committed
test(integration-karma): update hydration tests to use new signature
1 parent 2655a60 commit 7d63aa6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/@lwc/integration-karma/scripts/karma-plugins/hydration-tests.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,13 @@ async function getSsrCode(moduleCode, testConfig, filename) {
147147
${testConfig};
148148
config = config || {};
149149
${moduleCode};
150-
moduleOutput = LWC.renderComponent('x-${COMPONENT_UNDER_TEST}-${guid++}', Main, config.props || {}, 'sync');`,
150+
moduleOutput = LWC.renderComponent(
151+
'x-${COMPONENT_UNDER_TEST}-${guid++}',
152+
Main,
153+
config.props || {},
154+
false,
155+
'sync'
156+
);`,
151157
{ filename }
152158
);
153159

0 commit comments

Comments
 (0)