From c6b22f4682955f0d6354faa01117e6c9725cea3d Mon Sep 17 00:00:00 2001 From: rafagarcia Date: Wed, 5 Oct 2022 09:23:41 +0200 Subject: [PATCH] Update README.md Fixed typo in doc --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e73f23dd..7c55495a 100644 --- a/README.md +++ b/README.md @@ -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); });