linstrom/frontend-reactive/tests/integration/components/timeline/header-test.ts

19 lines
595 B
TypeScript
Raw Normal View History

import { module, test } from 'qunit';
import { setupRenderingTest } from 'frontend-reactive/tests/helpers';
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
2024-09-23 15:13:57 +00:00
module('Integration | Component | timeline/header', function (hooks) {
setupRenderingTest(hooks);
2024-09-23 15:13:57 +00:00
test('it renders', async function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
2024-09-23 15:13:57 +00:00
await render(hbs`<Timeline::Header />`);
2024-09-23 15:13:57 +00:00
assert.dom().hasText('');
// TODO: Add tests
});
2024-09-23 15:13:57 +00:00
});