aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/tap.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/highlight.js/lib/languages/tap.js')
-rw-r--r--node_modules/highlight.js/lib/languages/tap.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/node_modules/highlight.js/lib/languages/tap.js b/node_modules/highlight.js/lib/languages/tap.js
deleted file mode 100644
index efc285849..000000000
--- a/node_modules/highlight.js/lib/languages/tap.js
+++ /dev/null
@@ -1,35 +0,0 @@
-module.exports = function(hljs) {
- return {
- case_insensitive: true,
- contains: [
- hljs.HASH_COMMENT_MODE,
- // version of format and total amount of testcases
- {
- className: 'meta',
- variants: [
- { begin: '^TAP version (\\d+)$' },
- { begin: '^1\\.\\.(\\d+)$' }
- ],
- },
- // YAML block
- {
- begin: '(\s+)?---$', end: '\\.\\.\\.$',
- subLanguage: 'yaml',
- relevance: 0
- },
- // testcase number
- {
- className: 'number',
- begin: ' (\\d+) '
- },
- // testcase status and description
- {
- className: 'symbol',
- variants: [
- { begin: '^ok' },
- { begin: '^not ok' }
- ],
- },
- ]
- };
-}; \ No newline at end of file