Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests for Waterline Projections #106

Merged
merged 4 commits into from
Mar 17, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fill out the rest of the attributes for testing
particlebanana committed Mar 17, 2016
commit e6f7fe2602190a9b4fded4ce6cb1ee206e361680
6 changes: 5 additions & 1 deletion interfaces/queryable/projections.test.js
Original file line number Diff line number Diff line change
@@ -22,7 +22,11 @@ describe('Queryable Interface', function() {
title: 'tester',
phone: '123-456-7890',
type: 'bot',
age: 100
age: 100,
dob: new Date(),
percent: 0.0,
list: [],
obj: {}
}

Queryable.User.create(user, function(err, users) {