From e4dc39a4bc2712dc30ca76e7aec9295d37acb403 Mon Sep 17 00:00:00 2001 From: "cwilton@scottlogic.com" Date: Thu, 25 Jul 2024 09:38:12 +0100 Subject: [PATCH] Updated Jest In Aws Codebuild Feeling Ignored --- _drafts/jest-in-aws-codebuild-feeling-ignored.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_drafts/jest-in-aws-codebuild-feeling-ignored.markdown b/_drafts/jest-in-aws-codebuild-feeling-ignored.markdown index d7d68b1678..affd18c6be 100644 --- a/_drafts/jest-in-aws-codebuild-feeling-ignored.markdown +++ b/_drafts/jest-in-aws-codebuild-feeling-ignored.markdown @@ -62,7 +62,7 @@ As you can see, CodeBuild puts everything under a directory named "codebuild", w ## Rooting for the bad guy -Because path patterns in Jest config match anywhere in the _absolute path_ to a resource, not just within the project directory, the recommendation in the docs is to use the `` token to match strictly within your project: +Because path patterns in Jest config match anywhere in the _absolute path_ to a resource, not just within the project directory, the recommendation is to use the `` token to match strictly within your project:
const config: Config = {
   modulePathIgnorePatterns: ['<rootDir>/build'],