@@ -463,7 +463,8 @@ function addTest(manifest, test, tests) {
463
463
if ( testInfo . skip && testInfo . skip . idRegex ) {
464
464
testInfo . skip . idRegex . forEach ( function ( re ) {
465
465
if ( re . test ( test [ '@id' ] ) ) {
466
- //console.log('Skipping test "' + test.name + '" of description: ' + description);
466
+ //console.log('Skipping test due to id:',
467
+ // {id: test['@id'] });
467
468
self . skip ( ) ;
468
469
}
469
470
} ) ;
@@ -472,7 +473,8 @@ function addTest(manifest, test, tests) {
472
473
if ( testInfo . skip && testInfo . skip . descriptionRegex ) {
473
474
testInfo . skip . descriptionRegex . forEach ( function ( re ) {
474
475
if ( re . test ( description ) ) {
475
- //console.log('Skipping test "' + test.name + '" of description: ' + description);
476
+ //console.log('Skipping test due to description:',
477
+ // {id: test['@id'], name: test.name, description });
476
478
self . skip ( ) ;
477
479
}
478
480
} ) ;
@@ -488,7 +490,8 @@ function addTest(manifest, test, tests) {
488
490
skipModes = testInfo . skip . processingMode ;
489
491
}
490
492
if ( skipModes . indexOf ( pm ) !== - 1 ) {
491
- //console.log('Skipping test "' + test.name + '" of processing mode: ' + pm);
493
+ //console.log('Skipping test due to processingMode:',
494
+ // {id: test['@id'], name: test.name, processingMode: pm });
492
495
self . skip ( ) ;
493
496
}
494
497
} ) ;
@@ -502,7 +505,8 @@ function addTest(manifest, test, tests) {
502
505
skipVersions = testInfo . skip . specVersion ;
503
506
}
504
507
if ( skipVersions . indexOf ( sv ) !== - 1 ) {
505
- //console.log('Skipping test "' + test.name + '" for spec version: ' + sv);
508
+ //console.log('Skipping test due to specVersion:',
509
+ // {id: test['@id'], name: test.name, specVersion: sv });
506
510
self . skip ( ) ;
507
511
}
508
512
} ) ;
0 commit comments