From a02dd242d8529d94dae2af25a877d0da46447d65 Mon Sep 17 00:00:00 2001 From: Aron Atkins Date: Fri, 21 Jun 2024 08:45:32 -0400 Subject: [PATCH] distclean: clean .cache/data rather than __test__/data --- Makefile | 2 +- jest.config.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9768a0f..81760fc 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ clean: .PHONY: distclean distclean: clean - rm -rf __tests__/data/* + rm -rf .cache/data .PHONY: up up: .require-license diff --git a/jest.config.js b/jest.config.js index 2d4ac65..2569186 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,7 +2,6 @@ module.exports = { clearMocks: true, collectCoverage: true, coverageDirectory: 'coverage', - modulePathIgnorePatterns: ["./__tests__/data/"], preset: 'ts-jest', testEnvironment: 'node' }