Files
Fleetbase-Mirror-Repo/console/tests/integration/components/notification-list-test.js

27 lines
822 B
JavaScript

import { module, test } from 'qunit';
import { setupRenderingTest } from '@fleetbase/console/tests/helpers';
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
module('Integration | Component | notification-list', function (hooks) {
setupRenderingTest(hooks);
test('it renders', async function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
await render(hbs`<NotificationList />`);
assert.dom(this.element).hasText('');
// Template block usage:
await render(hbs`
<NotificationList>
template block text
</NotificationList>
`);
assert.dom(this.element).hasText('template block text');
});
});