Sha256: 46eccce3643587f1d8c3e9f77eae54b82a787f6f902bfdb5ceff25eac2744f69
Contents?: true
Size: 813 Bytes
Versions: 9
Compression:
Stored size: 813 Bytes
Contents
import { module, test } from 'qunit'; import { setupRenderingTest } from 'ember-qunit'; import { render } from '@ember/test-helpers'; import hbs from 'htmlbars-inline-precompile'; module('Integration | Component | panel-resizer', function(hooks) { setupRenderingTest(hooks); test('it renders', async function(assert) { // Set any properties with this.set('myProperty', 'value'); // Handle any actions with this.set('myAction', function(val) { ... }); await render(hbs`{{panel-resizer}}`); assert.equal(this.element.textContent.trim(), ''); // Template block usage: await render(hbs` {{#panel-resizer}} template block text {{/panel-resizer}} `); assert.equal(this.element.textContent.trim(), 'template block text'); }); });
Version data entries
9 entries across 9 versions & 1 rubygems