First Commit
This commit is contained in:
15
html/sternwarte/checkfuehrung/node_modules/cardinal/test/cardinal-highlight-json-file-async.js
generated
vendored
Executable file
15
html/sternwarte/checkfuehrung/node_modules/cardinal/test/cardinal-highlight-json-file-async.js
generated
vendored
Executable file
@@ -0,0 +1,15 @@
|
||||
'use strict'
|
||||
|
||||
var test = require('tape')
|
||||
var path = require('path')
|
||||
var cardinal = require('..')
|
||||
|
||||
var file = path.join(__dirname, 'fixtures/json.json')
|
||||
|
||||
test('without custom theme', function(t) {
|
||||
cardinal.highlightFile(file, function(err, highlighted) {
|
||||
t.equals(null, err, 'no error')
|
||||
t.equals(highlighted, '\u001b[33m{\u001b[39m\u001b[32m"foo"\u001b[39m\u001b[93m:\u001b[39m\u001b[92m"bar"\u001b[39m\u001b[32m,\u001b[39m\u001b[32m"baz"\u001b[39m\u001b[93m:\u001b[39m\u001b[92m"quux"\u001b[39m\u001b[32m,\u001b[39m\u001b[32m"bam"\u001b[39m\u001b[93m:\u001b[39m\u001b[90mnull\u001b[39m\u001b[33m}\u001b[39m')
|
||||
t.end()
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user