v0.0.17
Update notes:
-
the testing API has changed. Before, you added data directly to
serverData, e.g.serverData.contacts = [{id: 1, name: 'Link'}];Now, use the store directly:
store.loadData({ contacts: [{id: 1, name: 'Link'}] }); -
thisin your config file no longer refers to the Pretender instance; usethis.pretenderinstead.
Changes:
- [FEATURE] you can use
this.get,this.post,this.putandthis.delinstead ofthis.stub(verb)now - bug fixes + refactoring