]>
luflow.net public git repositories - flow-web.git/blob - static/highlight/es/languages/subunit.js
1 /*! `subunit` grammar compiled for Highlight.js 11.11.1 */
2 var hljsGrammar
= (function () {
7 Author: Sergey Bronnikov <sergeyb@bronevichok.ru>
8 Website: https://pypi.org/project/python-subunit/
12 function subunit(hljs
) {
15 begin: '\\[\n(multipart)?',
20 begin: '\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}\.\\d+Z'
22 const PROGRESSVALUE
= {
30 { begin: '^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?' },
31 { begin: '^progress(:?)(\\s+)?(pop|push)?' },
38 case_insensitive: true,
52 export default hljsGrammar
;