Sha256: 25647da5e053169e28dea99525bcd3091ae448fa2d02e94d122e4d0e1fa7d282
Contents?: true
Size: 734 Bytes
Versions: 1
Compression:
Stored size: 734 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 nav/item', 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-nav/item}}`); assert.dom().hasText(''); // Template block usage:" await render(hbs` {{#bsy-nav/item}} template block text {{/bsy-nav/item}} `); 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-nav/item-test.js |