Date comparison failure: expect(Date()).to(equal(Date())) inconsistent across locales
The goal is to assert that two Date instances parsed from identical ISO strings without explicit time zone information are equal across all environments. Nimble compares dates via timeIntervalSinceReferenceDate , which is zone‑independent, but the parsing step is not; local locale differences can produce distinct Date values. Because Nimble lacks a public AP