Skip to content

Instantly share code, notes, and snippets.

@milingo
Created January 29, 2018 14:50
Show Gist options
  • Save milingo/7395399c2f009e86397ec9ae02c24ae8 to your computer and use it in GitHub Desktop.
Save milingo/7395399c2f009e86397ec9ae02c24ae8 to your computer and use it in GitHub Desktop.
it('should save and find a tweet', async () => {
tweet.setFollowers(42);
tweet.setFriends(88);
const newTweet = await saveAndFind(tweet);
expect(newTweet.getFollowers()).to.eql(tweet.getFollowers());
expect(newTweet.getFriends()).to.eql(tweet.getFriends());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment