From 4581c519ef34904aa77a5a9ee00b495025d2c5ee Mon Sep 17 00:00:00 2001 From: Kevin Dangoor Date: Mon, 24 Mar 2025 17:32:22 -0400 Subject: [PATCH] Need to allow dependencies to be transformed for Jest --- jest.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jest.config.js b/jest.config.js index 0238ca6..f343ceb 100644 --- a/jest.config.js +++ b/jest.config.js @@ -5,4 +5,7 @@ module.exports = { }, testEnvironment: 'node', moduleFileExtensions: ['js', 'jsx', 'ts', 'tsx'], + transformIgnorePatterns: [ + '/node_modules/(?!@octokit|@github)', + ], }; \ No newline at end of file