JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
hide "pending-spec-changes" tests
authorJason Woofenden <jason@jasonwoof.com>
Wed, 23 Dec 2015 23:10:22 +0000 (18:10 -0500)
committerJason Woofenden <jason@jasonwoof.com>
Wed, 23 Dec 2015 23:10:22 +0000 (18:10 -0500)
test.coffee

index 846adc9..2d6f715 100644 (file)
@@ -7972,11 +7972,14 @@ serialize_els = (els, prefix = '| ') ->
                                ret += "#{prefix}UNKNOWN TAG TYPE #{el.type}"
        return ret
 
-test_results = passed: 0, failed: 0, fragment: 0
+test_results = passed: 0, failed: 0, fragment: 0, pending: 0
 test_parser = (args) ->
        if args.fragment? # hide fragment tests for now
                test_results.fragment += 1
                return
+       if args.name.substr(0, 20) is "pending-spec-changes" # hide for now
+               test_results.pending += 1
+               return
        wheic.debug_log_reset()
        parse_errors = []
        args.error_cb = (i) ->