File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -127,13 +127,15 @@ class StatusRuleSet {
127127
128128class WPTTest {
129129 /**
130- * @param {string } mod
131- * @param {string } filename
130+ * @param {string } mod name of the WPT module, e.g.
131+ * 'html/webappapis/microtask-queuing'
132+ * @param {string } filename path of the test, relative to mod, e.g.
133+ * 'test.any.js'
132134 * @param {StatusRule[] } rules
133135 */
134136 constructor ( mod , filename , rules ) {
135- this . module = mod ; // name of the WPT module, e.g. 'url'
136- this . filename = filename ; // name of the test file
137+ this . module = mod ;
138+ this . filename = filename ;
137139
138140 this . requires = new Set ( ) ;
139141 this . failReasons = [ ] ;
@@ -204,6 +206,9 @@ const intlRequirements = new IntlRequirement();
204206
205207
206208class StatusLoader {
209+ /**
210+ * @param {string } path relative path of the WPT subset
211+ */
207212 constructor ( path ) {
208213 this . path = path ;
209214 this . loaded = false ;
You can’t perform that action at this time.
0 commit comments