You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit 0259aab added tests for rowSearcher but they were failing on Safari
5 because it doesn't allow creating dates from strings where the delimiter
is a dash. Changed to slashes.
Also updated DEVELOPER.md to include this as a warning for test creation.
Copy file name to clipboardExpand all lines: DEVELOPER.md
+4
Original file line number
Diff line number
Diff line change
@@ -397,6 +397,10 @@ Deployment to http://ui-grid.info/ is done automatically when pushed to ui-grid
397
397
398
398
1. Use snake-case for class names, not camelCase.
399
399
400
+
# Tests
401
+
402
+
* **Note:** Safari 5 does not allow creating dates from strings where the delimiter is a dash, i.e. `newDate('2015-5-23')` will fail. This will cause your tests to work on all browsers but bomb on Safari 5 and you will have a hard time discovering why. Instead, use slashes like so: `newDate('2015/5/23')`.
403
+
400
404
# Performing a release
401
405
402
406
Run these grunt tasks. Look at the grunt-bump module for how to specify a major/minor/patch/pre-release version. This series will bump the version in package.json, update the changelog for that version, then commit the changes and add a new git tag for the version.
0 commit comments