Skip to content

Commit e08b1c3

Browse files
committed
fix
1 parent 3c841de commit e08b1c3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/framework-cli-e2e/test/templates.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,8 @@ const createTemplateTestSuite = (config: TemplateTestConfig) => {
13841384
`Expected properties.pageUrl to be '/dashboard', got '${properties.pageUrl}'`,
13851385
);
13861386
}
1387-
if (properties.sessionDuration !== 120) {
1387+
// Note: ClickHouse JSON may return numbers as strings
1388+
if (Number(properties.sessionDuration) !== 120) {
13881389
throw new Error(
13891390
`Expected properties.sessionDuration to be 120, got '${properties.sessionDuration}'`,
13901391
);

0 commit comments

Comments
 (0)