From 84e97893cb744639a74e7ffa9d099e995bd6c4f2 Mon Sep 17 00:00:00 2001 From: Shane Unger Date: Wed, 14 Feb 2018 02:29:51 -0700 Subject: [PATCH] Fix typo in JestObjectAPI.md (#5559) * Update JestObjectAPI.md small typo :) * Update JestObjectAPI.md --- docs/JestObjectAPI.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/JestObjectAPI.md b/docs/JestObjectAPI.md index a7442294d0ea..39efd22e65fe 100644 --- a/docs/JestObjectAPI.md +++ b/docs/JestObjectAPI.md @@ -158,7 +158,7 @@ as well as all the modules that it imports._ Modules that are mocked with `jest.mock` are mocked only for the file that calls `jest.mock`. Another file that imports the module will get the original -implementation even if run after the test file that mocks the module. +implementation even if it runs after the test file that mocks the module. Returns the `jest` object for chaining.