Skip to content

Commit

Permalink
Merge pull request #13110 from eltociear/patch-1
Browse files Browse the repository at this point in the history
fix typo in  resource-and-context-contextmodule
  • Loading branch information
sokra committed Jan 21, 2022
2 parents 9dbf3ca + c8e943c commit 6fa6e30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand All @@ -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);
};
Expand Down

0 comments on commit 6fa6e30

Please sign in to comment.