From 181b6ccd77bbc3526d9be6c481b4ba2f8e56e652 Mon Sep 17 00:00:00 2001 From: Tobi Date: Thu, 24 Nov 2022 08:39:24 +0100 Subject: [PATCH] Fixed indentation of reporter config example And uniform indentation across all code blocks in readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 242f2b4..afb6f81 100644 --- a/README.md +++ b/README.md @@ -108,9 +108,9 @@ Or you can define your options in your reporter configuration. ```js // jest.config.js { - reporters: [ - "default", - [ "jest-junit", { suiteName: "jest tests" } ] + reporters: [ + "default", + [ "jest-junit", { suiteName: "jest tests" } ] ] } ``` @@ -235,9 +235,9 @@ New feature as of jest-junit 11.0.0! Create a file in your project root directory named junitProperties.js: ```js module.exports = () => { - return { - key: "value" - } + return { + key: "value" + } }); ``` @@ -246,7 +246,7 @@ Will render - +