From 4fc14b39caea5f21f7af4cc40967ba88dd5836e1 Mon Sep 17 00:00:00 2001 From: Chen Osipov Date: Wed, 9 Oct 2024 08:07:20 -0700 Subject: [PATCH] update .eslintignore, .gitignore and jest.config.js --- .eslintignore | 1 - .gitignore | 1 - test/jest.config.js | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.eslintignore b/.eslintignore index 2ee353e05..e156aad52 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,6 +4,5 @@ webpack.dev.js jest.config.js tsconfig.json *.json -brain/dist-server const node_modules diff --git a/.gitignore b/.gitignore index 6656b7b21..eba42f934 100644 --- a/.gitignore +++ b/.gitignore @@ -18,7 +18,6 @@ test/timing test/results test/result-report src/browser-extension/public/manifest.json -brain/dist-server affiliates/ads_providers .env .env.local diff --git a/test/jest.config.js b/test/jest.config.js index 57fa483cc..208ab18c7 100644 --- a/test/jest.config.js +++ b/test/jest.config.js @@ -7,7 +7,7 @@ module.exports = { automock: false, testEnvironment: "jest-environment-jsdom", testTimeout: TIMEOUT_IN_SECONDS * 1000, - roots: ["./../src", "../brain"], + roots: ["./../src"], setupFiles: ["./jest.setup.js"], setupFilesAfterEnv: ["./jest.setup.env.js"], testPathIgnorePatterns: [".*\\.mock\\..*"],