Work in progress in dirty git branches (ignore)

This commit is contained in:
2018-11-27 09:47:46 -03:00
parent 94822e295b
commit 012e42b023
10 changed files with 48 additions and 13325 deletions
@@ -0,0 +1,25 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'user-filters-manager', 'Integration | Component | user filters manager', {
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 """{{user-filters-manager}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#user-filters-manager}}
template block text
{{/user-filters-manager}}
"""
assert.equal @$().text().trim(), 'template block text'