From e1eba96a991db4a5598839da62b33e797ee24ad9 Mon Sep 17 00:00:00 2001 From: Stefano Acosta <33550261+StefanoA1@users.noreply.github.com> Date: Mon, 27 Sep 2021 15:56:03 +0200 Subject: [PATCH] Fix typo for Next generation configuration Fixes missing `'` for the files path config example --- docs/06-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/06-configuration.md b/docs/06-configuration.md index f9c61d058..b9e8d8b32 100644 --- a/docs/06-configuration.md +++ b/docs/06-configuration.md @@ -197,7 +197,7 @@ export default { nonSemVerExperiments: { nextGenConfig: true }, - files: ['unit-tests/**/*] + files: ['unit-tests/**/*'] }; ```