Update tests and build

This commit is contained in:
Josh Dales
2023-05-05 08:58:23 -04:00
parent 11812c37f6
commit 9488def29a
2 changed files with 17 additions and 5 deletions

View File

@@ -54,9 +54,9 @@ describe('checkAnyChangedFiles', () => {
describe('when all globs do not match any of the files that have changed', () => {
const globs = ['*.txt', '*.md'];
it('returns false', () => {
it('returns true', () => {
const result = checkAnyChangedFiles(changedFiles, globs);
expect(result).toBe(false);
expect(result).toBe(true);
});
});
});