From 709fc713d265fb9edadf7e7a985ceb9e4764742c Mon Sep 17 00:00:00 2001 From: bambielli Date: Tue, 16 Oct 2018 22:57:32 -0500 Subject: [PATCH] fixes iss #7174 : update setupfiles documentation for improved clarity around expected setupfile behavior --- docs/Configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index 0c70b41ed22d..ca9107107318 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -628,9 +628,9 @@ If you need to restrict your test-runner to only run in serial rather then being Default: `[]` -The paths to modules that run some code to configure or set up the testing environment before each test. Since every test runs in its own environment, these scripts will be executed in the testing environment immediately before executing the test code itself. +The paths to modules that run some code to configure or set up the testing environment. Each setupFile will be run once per test file. Since every test runs in its own environment, these scripts will be executed in the testing environment immediately before executing the test code itself. -It's worth noting that this code will execute _before_ [`setupTestFrameworkScriptFile`](#setuptestframeworkscriptfile-string). +It's also worth noting that setupFiles will execute _before_ [`setupTestFrameworkScriptFile`](#setuptestframeworkscriptfile-string). ### `setupTestFrameworkScriptFile` [string]