File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -127,13 +127,15 @@ class StatusRuleSet {
127
127
128
128
class WPTTest {
129
129
/**
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'
132
134
* @param {StatusRule[] } rules
133
135
*/
134
136
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 ;
137
139
138
140
this . requires = new Set ( ) ;
139
141
this . failReasons = [ ] ;
@@ -204,6 +206,9 @@ const intlRequirements = new IntlRequirement();
204
206
205
207
206
208
class StatusLoader {
209
+ /**
210
+ * @param {string } path relative path of the WPT subset
211
+ */
207
212
constructor ( path ) {
208
213
this . path = path ;
209
214
this . loaded = false ;
You can’t perform that action at this time.
0 commit comments