Interface is wired up for Approving/Rejecting posts

This commit is contained in:
Robin Ward
2015-04-14 14:21:02 -04:00
parent 96d2c5069b
commit 0c233e4e25
20 changed files with 273 additions and 90 deletions

View File

@ -88,3 +88,11 @@ test('destroyRecord', function() {
});
});
});
test('find embedded', function() {
const store = createStore();
store.find('fruit', 1).then(function(f) {
ok(f.get('farmer'), 'it has the embedded object');
});
});