Skip to content

Commit

Permalink
Ensure fallback years values are present
Browse files Browse the repository at this point in the history
  • Loading branch information
jessealama authored and ptomato committed Mar 29, 2022
1 parent ee1f962 commit 9aaa22c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ features: [Temporal]
---*/

const tests = [
[[], "05-02[u-ca=iso8601]"],
[[], "1972-05-02[u-ca=iso8601]"],
[[{ toString() { return "custom"; } }], "1972-05-02[u-ca=custom]"],
[[{ toString() { return "iso8601"; } }], "05-02[u-ca=iso8601]"],
[[{ toString() { return "iso8601"; } }], "1972-05-02[u-ca=iso8601]"],
[[{ toString() { return "ISO8601"; } }], "1972-05-02[u-ca=ISO8601]"],
[[{ toString() { return "\u0131so8601"; } }], "1972-05-02[u-ca=\u0131so8601]"], // dotless i
];
Expand Down

0 comments on commit 9aaa22c

Please sign in to comment.