fix typo in resource-and-context-contextmodule

dont -> do not
This commit is contained in:
Ikko Ashimine 2021-04-11 12:09:49 +09:00 committed by GitHub
parent cde1b73e12
commit c8e943ce5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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);
};