montezume
montezume
One thing that might be worth looking into is using a service like [percy](https://percy.io) to run the tests. That way the tests themselves don't need to live in the repository,...
I did some research, it looks like the problem is in this crazy regex expression in `parse-time`. ```js const match = time.match( /^(\d{1,2})(?::(\d{1,2})(?::(\d{1,2})(?:\.(\d{1,3}))?)?)?\s*(am|pm)?$/ ); if (!match) return null; ``` Two...
Yeah that would make sense as well. 👍