Making WordPress.org

Changeset 12154


Ignore:
Timestamp:
10/30/2022 11:05:34 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Trac: Add has-testing-info and needs-testing-info keywords.

Follow-up to [183], [1952], [3216], [7497], [8109], [8110], [8441], [8453], [9053], [10509], [11775], [11776], [11798].

Props davidbaumwald, hellofromTonya, ironprogrammer.
Fixes #5634.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js

    r12047 r12154  
    1515        'close' : 'The ticket is a candidate for closure.',
    1616        'needs-testing' : 'Patch has a particular need for testing.',
     17        'has-testing-info' : 'Steps have been provided to reproduce the issue or test a patch.'
     18        'needs-testing-info' : 'A more detailed testing procedure is needed to reproduce the issue, or to validate a patch works as expected.',
    1719        'needs-design' : 'A designer should create a prototype of how the suggested changes should look/behave before writing code.',
    1820        'needs-design-feedback' : 'A designer should review and give feedback on the proposed changes.',
     
    12391241                    }
    12401242
     1243                    if ( 'has-testing-info' === keyword ) {
     1244                        wpTrac.workflow.removeKeyword( 'needs-testing-info' );
     1245                    } else if ( 'needs-testing-info' === keyword ) {
     1246                        wpTrac.workflow.removeKeyword( 'has-testing-info' );
     1247                    }
     1248
    12411249                    if ( 'has-unit-tests' === keyword ) {
    12421250                        wpTrac.workflow.removeKeyword( 'needs-unit-tests' );
Note: See TracChangeset for help on using the changeset viewer.