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.

produkt-test.js 548B

123456789101112131415161718
  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 | produkt', 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`<Produkt />`);
  11. assert.dom('.produkt img').isVisible();
  12. });
  13. });