diff --git a/demo/tests/integration/components/ember-card-editor-test.js b/demo/tests/integration/components/ember-card-editor-test.js deleted file mode 100644 index 3b1010a08..000000000 --- a/demo/tests/integration/components/ember-card-editor-test.js +++ /dev/null @@ -1,26 +0,0 @@ -import { moduleForComponent, test } from 'ember-qunit'; -import hbs from 'htmlbars-inline-precompile'; - -moduleForComponent('ember-card-editor', 'Integration | Component | ember card editor', { - integration: true -}); - -test('it renders', function(assert) { - assert.expect(2); - - // Set any properties with this.set('myProperty', 'value'); - // Handle any actions with this.on('myAction', function(val) { ... }); - - this.render(hbs`{{ember-card-editor}}`); - - assert.equal(this.$().text().trim(), ''); - - // Template block usage: - this.render(hbs` - {{#ember-card-editor}} - template block text - {{/ember-card-editor}} - `); - - assert.equal(this.$().text().trim(), 'template block text'); -}); diff --git a/demo/tests/integration/components/ember-card-test.js b/demo/tests/integration/components/ember-card-test.js deleted file mode 100644 index 49af812dd..000000000 --- a/demo/tests/integration/components/ember-card-test.js +++ /dev/null @@ -1,26 +0,0 @@ -import { moduleForComponent, test } from 'ember-qunit'; -import hbs from 'htmlbars-inline-precompile'; - -moduleForComponent('ember-card', 'Integration | Component | ember card', { - integration: true -}); - -test('it renders', function(assert) { - assert.expect(2); - - // Set any properties with this.set('myProperty', 'value'); - // Handle any actions with this.on('myAction', function(val) { ... }); - - this.render(hbs`{{ember-card}}`); - - assert.equal(this.$().text().trim(), ''); - - // Template block usage: - this.render(hbs` - {{#ember-card}} - template block text - {{/ember-card}} - `); - - assert.equal(this.$().text().trim(), 'template block text'); -});