Removed empty card test files

This commit is contained in:
Kevin Ansfield 2021-11-29 09:42:14 +00:00
parent e2ec8d0e28
commit a44d04cdac
3 changed files with 0 additions and 81 deletions

View File

@ -1,27 +0,0 @@
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {hbs} from 'ember-cli-htmlbars';
import {render} from '@ember/test-helpers';
import {setupRenderingTest} from 'ember-mocha';
describe('Integration | Component | koenig-card-audio', function () {
setupRenderingTest();
it('renders', async function () {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
await render(hbs`<KoenigCardAudio />`);
expect(this.element.textContent.trim()).to.equal('');
// Template block usage:
await render(hbs`
<KoenigCardAudio>
template block text
</KoenigCardAudio>
`);
expect(this.element.textContent.trim()).to.equal('template block text');
});
});

View File

@ -1,27 +0,0 @@
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {hbs} from 'ember-cli-htmlbars';
import {render} from '@ember/test-helpers';
import {setupRenderingTest} from 'ember-mocha';
describe('Integration | Component | koenig-card-file', function () {
setupRenderingTest();
it('renders', async function () {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
await render(hbs`<KoenigCardFile />`);
expect(this.element.textContent.trim()).to.equal('');
// Template block usage:
await render(hbs`
<KoenigCardFile>
template block text
</KoenigCardFile>
`);
expect(this.element.textContent.trim()).to.equal('template block text');
});
});

View File

@ -1,27 +0,0 @@
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {hbs} from 'ember-cli-htmlbars';
import {render} from '@ember/test-helpers';
import {setupRenderingTest} from 'ember-mocha';
describe('Integration | Component | koenig-card-video', function () {
setupRenderingTest();
it('renders', async function () {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
await render(hbs`<KoenigCardVideo />`);
expect(this.element.textContent.trim()).to.equal('');
// Template block usage:
await render(hbs`
<KoenigCardVideo>
template block text
</KoenigCardVideo>
`);
expect(this.element.textContent.trim()).to.equal('template block text');
});
});