Scaffold: Show "defer" value in test list

This commit is contained in:
Abe Jellinek 2022-03-30 14:49:42 -07:00
parent bb88585699
commit 27c9086222
3 changed files with 8 additions and 0 deletions

View file

@ -1672,6 +1672,11 @@ var Scaffold = new function () {
status.setAttribute('label', oldStatuses[testString] || 'Not run');
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-type', test.type);

View file

@ -352,10 +352,12 @@
<listhead>
<listheader label="&scaffold.testing.input.label;"/>
<listheader label="&scaffold.testing.status.label;"/>
<listheader label="&scaffold.testing.defer.label;"/>
</listhead>
<listcols>
<listcol flex="1"/>
<listcol class="listcol-testMessage"/>
<listcol/>
</listcols>
</listbox>
</hbox>

View file

@ -68,6 +68,7 @@
<!ENTITY scaffold.testing.input.label "Input">
<!ENTITY scaffold.testing.status.label "Status">
<!ENTITY scaffold.testing.defer.label "Defer">
<!ENTITY scaffold.testing.populate "Populate">
<!ENTITY scaffold.testing.save "Save">
<!ENTITY scaffold.testing.delete "Delete">