-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
feat: initial support for Temporal equality #8007
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
✅ Deploy Preview for vitest-dev ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify project configuration. |
| case '[object Temporal.PlainYearMonth]': | ||
| case '[object Temporal.PlainMonthDay]': | ||
| case '[object Temporal.Duration]': | ||
| return a.toString() === b.toString() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you know which is preferred whether toString equality and builtin equals method? https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Temporal/ZonedDateTime/equals
It looks like there are several old issues mentions calendar comparison (such as tc39/proposal-temporal#625), but the discussion seem quite technical 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.equals() seems to compare including the calendar, so I think it's a good suggestion. Let's do it!
For Temporal.Duration this .equals() method doesn't exist, but I wasn't sure about that one to begin with. For Durations, there IS actually ambiguity. For example, are 60 seconds and 1 minute the same? If you compare the duration in time, yes; but if you literally compare all their components, no. Also, for example "1 day" is not necessarily the same as "24 hour" and depends on context.
My suggestion is to use .toString() for durations so it does a literal comparison of all the different components.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed it looks like Duration is tricky. tc39/proposal-temporal#856 seems to explain the details.
As a builtin equality, I think choosing toString comparison makes sense since that's the most strict way to do it. Users can still add own custom equality tester to loosen it if desired.
|
@hi-ogawa I updated the PR:
|
hi-ogawa
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
|
I'm one of the champions of the Temporal proposal. Sorry I was too late to comment on this PR back in May, but I was very happy to see this PR! Thanks for building it. I did have a question for @hi-ogawa and @dirkluijk: in vitest, is equality comparison expected to have no observable differences between the values? If yes, then using That said, this may be desirable behavior. One of the main reasons that we made So the behavior in this PR may be better! But at least I wanted to flag the behavior in case you didn't want it. |
@justingrant Thanks for the heads up! For this case, Vitest's goal is to provide whatever most ergonomic for users and we don't necessary need to detect anything observable. Since Temporal provides one "opinionated" equality implementation, I think test/assertion framework building up on it sounds most natural. For any niche use case, Vitest allows overriding equality via |
Description
Fixes #7991
Please don't delete this checklist! Before submitting the PR, please make sure you do the following:
pnpm-lock.yamlunless you introduce a new test example.Tests
pnpm test:ci.Documentation
pnpm run docscommand.Changesets
feat:,fix:,perf:,docs:, orchore:.