You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rezept-test.js 553B

12345678910111213141516
  1. import { module, test } from 'qunit';
  2. import { setupRenderingTest } from 'ember-qunit';
  3. import { render } from '@ember/test-helpers';
  4. import { hbs } from 'ember-cli-htmlbars';
  5. module('Integration | Component | rezept', function(hooks) {
  6. setupRenderingTest(hooks);
  7. test('it renders', async function(assert) {
  8. // Set any properties with this.set('myProperty', 'value');
  9. // Handle any actions with this.set('myAction', function(val) { ... });
  10. await render(hbs`<Rezept />`);
  11. assert.dom('.rezept h4').hasText('Zutaten:');
  12. });
  13. });