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
When the following Gherkin is output as DHTML the Background uses the feature's description.
Feature: PBI46902 - Save wind forecasts to database
As a Pickles user
When I give a description in my background
I want the background to use that description, not this text
Background:
This text describes my background
Will produce HTML similar to:
<divclass="scenario">
<h4>Background:</h4>
<divdata-bind="html: renderMarkdownBlock(Description)"class="description">
<p>As a Pickles user
When I give a description in my background
I want the background to use that description, not this text</p>
</div>
....
</div>
It should produce something similar to this:
<divclass="scenario">
<h4>Background:</h4>
<divdata-bind="html: renderMarkdownBlock(Background.Description)"class="description">
<p>This text describes my background</p>
</div>
....
</div>
The text was updated successfully, but these errors were encountered:
When the following Gherkin is output as DHTML the Background uses the feature's description.
Will produce HTML similar to:
It should produce something similar to this:
The text was updated successfully, but these errors were encountered: