From 44492a80ad7a7123422a7dbf342dce1e825e3ee8 Mon Sep 17 00:00:00 2001 From: Brian Gann Date: Tue, 7 Mar 2023 22:39:03 -0500 Subject: [PATCH] Sync the jest customization with main docs --- packages/create-plugin/templates/common/.config/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/create-plugin/templates/common/.config/README.md b/packages/create-plugin/templates/common/.config/README.md index d3d6b5502..f1ded3464 100644 --- a/packages/create-plugin/templates/common/.config/README.md +++ b/packages/create-plugin/templates/common/.config/README.md @@ -60,7 +60,7 @@ A common issue found with the current jest config involves importing an npm pack ```javascript process.env.TZ = 'UTC'; -const { grafanaESModules, nodeModulesToTransform } = require('./jest/utils'); +const { grafanaESModules, nodeModulesToTransform } = require('./config/jest/utils'); module.exports = { // Jest configuration provided by Grafana @@ -161,4 +161,4 @@ services: In this example we are assigning the environment variable `GRAFANA_IMAGE` to the build arg `grafana_image` with a default value of `grafana`. This will give you the possibility to set the value while running the docker-compose commands which might be convinent in some scenarios. ---- \ No newline at end of file +---