exporting bel/raw via choo/html/raw (#565)
This commit is contained in:
@@ -1,17 +1,19 @@
|
||||
var tape = require('tape')
|
||||
|
||||
var html = require('./html')
|
||||
var raw = require('./html/raw')
|
||||
var choo = require('./')
|
||||
|
||||
tape('should render on the server', function (t) {
|
||||
var app = choo()
|
||||
app.route('/', function (state, emit) {
|
||||
var strong = '<strong>Hello filthy planet</strong>'
|
||||
return html`
|
||||
<p>Hello filthy planet</p>
|
||||
<p>${raw(strong)}</p>
|
||||
`
|
||||
})
|
||||
var res = app.toString('/')
|
||||
var exp = '<p>Hello filthy planet</p>'
|
||||
var exp = '<p><strong>Hello filthy planet</strong></p>'
|
||||
t.equal(res.toString().trim(), exp, 'result was OK')
|
||||
t.end()
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user