Sha256: ddbde8693c7a0cf2cc9267f56d8858b2ad87fd6cf496bf1f7381a6f68146e7a3

Contents?: true

Size: 750 Bytes

Versions: 1

Compression:

Stored size: 750 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 | bsy sheet/header', function(hooks) {
  setupRenderingTest(hooks);

  test('it renders', async function(assert) {
    // Set any properties with this.set('myProperty', 'value');
    // Handle any actions with this.on('myAction', function(val) { ... });"

    await render(hbs`{{bsy-sheet/header}}`);

    assert.dom().hasText('');

    // Template block usage:"
    await render(hbs`
      {{#bsy-sheet/header}}
        template block text
      {{/bsy-sheet/header}}
    `);

    assert.dom().hasText('template block text');
  });
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bootstrap-bookingsync-sass-2.0.0 tests/integration/components/bsy-sheet/header-test.js