Skip to content

Commit

Permalink
distclean: clean .cache/data rather than __test__/data
Browse files Browse the repository at this point in the history
  • Loading branch information
aronatkins committed Jun 21, 2024
1 parent 761cea0 commit a02dd24
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ clean:

.PHONY: distclean
distclean: clean
rm -rf __tests__/data/*
rm -rf .cache/data

.PHONY: up
up: .require-license
Expand Down
1 change: 0 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module.exports = {
clearMocks: true,
collectCoverage: true,
coverageDirectory: 'coverage',
modulePathIgnorePatterns: ["./__tests__/data/"],
preset: 'ts-jest',
testEnvironment: 'node'
}

0 comments on commit a02dd24

Please sign in to comment.