Remove ordered-filtered-table component idea that has not produced a working example

This commit is contained in:
2018-11-23 10:23:19 -03:00
parent 6458155d7c
commit 296ca5d895
7 changed files with 0 additions and 85 deletions
@@ -1,25 +0,0 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'ordered-filtered-table', 'Integration | Component | ordered filtered table', {
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 """{{ordered-filtered-table}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#ordered-filtered-table}}
template block text
{{/ordered-filtered-table}}
"""
assert.equal @$().text().trim(), 'template block text'
@@ -1,25 +0,0 @@
import { test, moduleForComponent } from 'ember-qunit'
import hbs from 'htmlbars-inline-precompile'
moduleForComponent 'ordered-filtered-table/property', 'Integration | Component | ordered filtered table/property', {
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 """{{ordered-filtered-table/property}}"""
assert.equal @$().text().trim(), ''
# Template block usage:
@render hbs """
{{#ordered-filtered-table/property}}
template block text
{{/ordered-filtered-table/property}}
"""
assert.equal @$().text().trim(), 'template block text'