From 65429e581a54f6a11ce27cf693c4bc3f755fc3fe Mon Sep 17 00:00:00 2001 From: mabashian Date: Fri, 24 Jan 2020 17:00:40 -0500 Subject: [PATCH] Properly bookend @constants alias so that it doesn't inadvertently match something we don't want it to match --- awx/ui_next/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui_next/jest.config.js b/awx/ui_next/jest.config.js index 25f11b8f92..a2be1d25ab 100644 --- a/awx/ui_next/jest.config.js +++ b/awx/ui_next/jest.config.js @@ -11,7 +11,7 @@ module.exports = { '\\.(css|scss|less)$': '/__mocks__/styleMock.js', '^@api(.*)$': '/src/api$1', '^@components(.*)$': '/src/components$1', - '@constants$': '/src/constants.js', + '^@constants$': '/src/constants.js', '^@contexts(.*)$': '/src/contexts$1', '^@screens(.*)$': '/src/screens$1', '^@util(.*)$': '/src/util$1',