Fix typo in test caption

This commit is contained in:
Alexander Kachkaev
2022-02-04 13:34:07 +00:00
parent 6a0b7265cb
commit 409a5a2095

View File

@@ -34,7 +34,7 @@ describe("checkGlobs", () => {
expect(result).toBeFalsy();
});
it("returns false for a file starting with dot if `dot` option is true", () => {
it("returns true for a file starting with dot if `dot` option is true", () => {
const changedFiles = [".foo.txt"];
const result = checkGlobs(changedFiles, matchConfig, true);