Scaffold: Show "defer" value in test list
This commit is contained in:
parent
bb88585699
commit
27c9086222
3 changed files with 8 additions and 0 deletions
|
@ -1672,6 +1672,11 @@ var Scaffold = new function () {
|
||||||
status.setAttribute('label', oldStatuses[testString] || 'Not run');
|
status.setAttribute('label', oldStatuses[testString] || 'Not run');
|
||||||
item.appendChild(status);
|
item.appendChild(status);
|
||||||
|
|
||||||
|
let defer = document.createElement('listcell');
|
||||||
|
defer.setAttribute('type', 'checkbox');
|
||||||
|
defer.setAttribute('checked', test.defer);
|
||||||
|
item.appendChild(defer);
|
||||||
|
|
||||||
item.setUserData('test-string', testString, null);
|
item.setUserData('test-string', testString, null);
|
||||||
item.setUserData('test-type', test.type);
|
item.setUserData('test-type', test.type);
|
||||||
|
|
||||||
|
|
|
@ -352,10 +352,12 @@
|
||||||
<listhead>
|
<listhead>
|
||||||
<listheader label="&scaffold.testing.input.label;"/>
|
<listheader label="&scaffold.testing.input.label;"/>
|
||||||
<listheader label="&scaffold.testing.status.label;"/>
|
<listheader label="&scaffold.testing.status.label;"/>
|
||||||
|
<listheader label="&scaffold.testing.defer.label;"/>
|
||||||
</listhead>
|
</listhead>
|
||||||
<listcols>
|
<listcols>
|
||||||
<listcol flex="1"/>
|
<listcol flex="1"/>
|
||||||
<listcol class="listcol-testMessage"/>
|
<listcol class="listcol-testMessage"/>
|
||||||
|
<listcol/>
|
||||||
</listcols>
|
</listcols>
|
||||||
</listbox>
|
</listbox>
|
||||||
</hbox>
|
</hbox>
|
||||||
|
|
|
@ -68,6 +68,7 @@
|
||||||
|
|
||||||
<!ENTITY scaffold.testing.input.label "Input">
|
<!ENTITY scaffold.testing.input.label "Input">
|
||||||
<!ENTITY scaffold.testing.status.label "Status">
|
<!ENTITY scaffold.testing.status.label "Status">
|
||||||
|
<!ENTITY scaffold.testing.defer.label "Defer">
|
||||||
<!ENTITY scaffold.testing.populate "Populate">
|
<!ENTITY scaffold.testing.populate "Populate">
|
||||||
<!ENTITY scaffold.testing.save "Save">
|
<!ENTITY scaffold.testing.save "Save">
|
||||||
<!ENTITY scaffold.testing.delete "Delete">
|
<!ENTITY scaffold.testing.delete "Delete">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue