Skip to content

Commit

Permalink
Adding Query Tests for NaN and Null (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidt-sebastian authored Mar 27, 2018
1 parent 1df29bf commit ee04b67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions conformance/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ const convertInput = {
return convertObject(value);
} else if (is.array(value)) {
return convertArray(value);
} else if (value === 'NaN') {
return NaN;
} else if (value === 'Delete') {
return Firestore.FieldValue.delete();
} else if (value === 'ServerTimestamp') {
Expand Down
Binary file modified conformance/test-suite.binproto
Binary file not shown.

0 comments on commit ee04b67

Please sign in to comment.