-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding ADR for adding the current executed file in the test runner
- Loading branch information
1 parent
11d14ca
commit 3bd0e2b
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# 15. Current executed file in Test Runner | ||
|
||
Date: 2024-11-18 | ||
|
||
## Status | ||
|
||
Accepted | ||
|
||
## Context | ||
|
||
For more readability, we wanted to print the current executed file path in the console as part of a test suite output | ||
|
||
## Decision | ||
|
||
Add a current executed file path value in `TestRunner` so it can be passed to every `TestSuite` when parsing the suite file. | ||
This is only possible to do because the runner executes the suites sequentially. | ||
|
||
## Consequences | ||
|
||
The suite filepath is executed as part of the test output for each suite. |