⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 1f0e22abb0626d265b9f5a28eff3e6aac44bca91555309acaa00242c918ab997:


module.exports = function(suite, testName, riot) {

  // setup
  var ifTag = document.createElement('mount-tag')
  body.appendChild(ifTag)
  riot.tag('mount-tag', '<p>{ msg }</p>', function() {
    this.msg = 'hi'
  })

  suite.add(testName, () => {
    var tag = riot.mount('mount-tag')[0]
    tag.update()
  })
}