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
Bugfix - don't require render in every test (#6318)
## Summary
Since the very beginning of testing framework we had the following bug -
if a given test doesn't include any render then the tests freeze. After
debugging I've found that we should have initiated `_wasRenderedNull`
with the opposite value:
```diff
- private _wasRenderedNull: boolean = false;
+ private _wasRenderedNull: boolean = true;
```
## Test plan
0 commit comments