Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fixed typo in doc
  • Loading branch information
rafagarcia authored Oct 5, 2022
1 parent 34954c8 commit c6b22f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ test.cb('that chat app can be mocked', t => {
// NOTE: this timeout is for creating another micro task that will happen after the above one
setTimeout(() => {
t.is(app.messages.length, 1);
t.is(app.messages[0], 'test message from mock server', 'we have subbed our websocket backend');
t.is(app.messages[0], 'test message from mock server', 'we have stubbed our websocket backend');
mockServer.stop(t.done);
}, 100);
});
Expand Down

0 comments on commit c6b22f4

Please sign in to comment.