From c8e943ce5d35cbcdd5cbfadd9555abefd912b9a2 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sun, 11 Apr 2021 12:09:49 +0900 Subject: [PATCH] fix typo in resource-and-context-contextmodule dont -> do not --- .../ignore/resource-and-context-contextmodule/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/configCases/ignore/resource-and-context-contextmodule/test.js b/test/configCases/ignore/resource-and-context-contextmodule/test.js index 150d2d127..61d1a3058 100644 --- a/test/configCases/ignore/resource-and-context-contextmodule/test.js +++ b/test/configCases/ignore/resource-and-context-contextmodule/test.js @@ -11,7 +11,7 @@ it("should ignore context modules that match resource regex and context", functi }).toThrowError(); }); -it("should not ignore context modules that dont match the resource", function() { +it("should not ignore context modules that do not match the resource", function() { const folderBContext = function(mod) { require("./folder-b/" + mod); }; @@ -21,7 +21,7 @@ it("should not ignore context modules that dont match the resource", function() }).not.toThrowError(); }); -it("should not ignore context modules that dont match the context", function() { +it("should not ignore context modules that do not match the context", function() { const folderBContext = function(mod) { require("./folder-a/" + mod); };