Skip to content

Commit

Permalink
Fix datetime timezone issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fongsean committed Jun 11, 2024
1 parent 17b6a76 commit 25ca83f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/smart-forms-app/e2e/items.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ test('enter inputs into BitOfEverything questionnaire', async ({ page }) => {
expect(debugViewerText.includes(`"valueBoolean": true`)).toBeTruthy();

expect(debugViewerText.includes(`"valueDate": "2023-12-25"`)).toBeTruthy();
expect(debugViewerText.includes(`"valueDateTime": "2023-12-25T11:30:00+10:30"`)).toBeTruthy();
expect(debugViewerText.includes(`"valueDateTime": "2023-12-25T11:30:00"`)).toBeTruthy();

expect(debugViewerText.includes(`"valueInteger": ${integerInput}`)).toBeTruthy();
expect(debugViewerText.includes(`"valueDecimal": ${decimalInput}`)).toBeTruthy();
Expand Down

0 comments on commit 25ca83f

Please sign in to comment.