-
-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Testing documentation (#1054)
Following the issues #1038 and #594, this proposal suggests updating the Testing documentation to include Swift Testing as an alternative to XCTest.
- Loading branch information
1 parent
7a7183f
commit c6b79d7
Showing
3 changed files
with
186 additions
and
18 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
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
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 |
---|---|---|
@@ -1,4 +1,11 @@ | ||
{ | ||
"ignorePatterns": [{ "pattern": ".*(localhost|127.0.0.1).*" }], | ||
"aliveStatusCodes": [429, 200] | ||
"httpHeaders": { | ||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" | ||
}, | ||
"retryCount": 3, | ||
"retryOn": [403, 429, 500, 502, 503, 504], | ||
"ignorePatterns": [ | ||
{ "pattern": ".*(localhost|127.0.0.1).*" } | ||
], | ||
"aliveStatusCodes": [200, 206, 301, 302, 429] | ||
} |