import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render, findAll } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
const dialogClassName = '.notification-confirm-modal';
module('Integration | Component | notifications-confirm-dialog', function(hooks) {
setupRenderingTest(hooks);
test('Confirmation Dialog rendering', async function(assert) {
const header = 'Test Header';
const content = 'Test Content';
await render(hbs``);
assert.dom(dialogClassName).exists();
this.setProperties({ header, content });
await render(hbs`
`);
assert.dom(`${dialogClassName}__heading-text`).hasText(header);
assert.dom(`${dialogClassName}__content`).hasText(content);
assert.equal(
findAll(`${dialogClassName} button`).length,
2,
'Expected there to be two buttons for dialog dismissal and confirmation'
);
});
});