import { test, moduleForComponent } from 'ember-qunit' import hbs from 'htmlbars-inline-precompile' moduleForComponent 'error-handling', 'Integration | Component | error handling', { integration: true } test 'it renders', (assert) -> assert.expect 2 # Set any properties with @set 'myProperty', 'value' # Handle any actions with @on 'myAction', (val) -> @render hbs """{{error-handling}}""" assert.equal @$().text().trim(), '' # Template block usage: @render hbs """ {{#error-handling}} template block text {{/error-handling}} """ assert.equal @$().text().trim(), 'template block text'