You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,9 @@ All notable changes to **bUnit** will be documented in this file. The project ad
6
6
7
7
## [Unreleased]
8
8
9
+
### Fixed
10
+
- The created HTML contained encoded strings. Reported by [@tobiasbrandstaedter](https://github.com/tobiasbrandstaedter). Fixed by [@linkdotnet](https://github.com/linkdotnet).
/// Wait until the provided <paramref name="statePredicate"/> action returns true,
44
+
/// or the <paramref name="timeout"/> is reached (default is one second).
45
+
///
46
+
/// The <paramref name="statePredicate"/> is evaluated initially, and then each time
47
+
/// the <paramref name="renderedFragment"/> renders.
48
+
/// </summary>
49
+
/// <param name="renderedFragment">The render fragment or component to attempt to verify state against.</param>
50
+
/// <param name="statePredicate">The predicate to invoke after each render, which must returns <c>true</c> when the desired state has been reached.</param>
51
+
/// <param name="timeout">The maximum time to wait for the desired state.</param>
52
+
/// <exception cref="WaitForFailedException">Thrown if the <paramref name="statePredicate"/> throw an exception during invocation, or if the timeout has been reached. See the inner exception for details.</exception>
/// Wait until the provided <paramref name="assertion"/> passes (i.e. does not throw an
92
+
/// exception), or the <paramref name="timeout"/> is reached (default is one second).
93
+
///
94
+
/// The <paramref name="assertion"/> is attempted initially, and then each time the <paramref name="renderedFragment"/> renders.
95
+
/// </summary>
96
+
/// <param name="renderedFragment">The rendered fragment to wait for renders from and assert against.</param>
97
+
/// <param name="assertion">The verification or assertion to perform.</param>
98
+
/// <param name="timeout">The maximum time to attempt the verification.</param>
99
+
/// <exception cref="WaitForFailedException">Thrown if the timeout has been reached. See the inner exception to see the captured assertion exception.</exception>
0 commit comments