]>
luflow.net public git repositories - flow-web.git/blob - static/highlight/es/languages/tap.js
1 /*! `tap` grammar compiled for Highlight.js 11.11.1 */
2 var hljsGrammar
= (function () {
6 Language: Test Anything Protocol
7 Description: TAP, the Test Anything Protocol, is a simple text-based interface between testing modules in a test harness.
9 Author: Sergey Bronnikov <sergeyb@bronevichok.ru>
10 Website: https://testanything.org
15 name: 'Test Anything Protocol',
16 case_insensitive: true,
18 hljs
.HASH_COMMENT_MODE
,
19 // version of format and total amount of testcases
23 { begin: '^TAP version (\\d+)$' },
24 { begin: '^1\\.\\.(\\d+)$' }
39 // testcase status and description
55 export default hljsGrammar
;