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