Charlie Tran 5072ef013c
feat(frontend): Module consolidation - clean up for OS logic - init virtual assistant (#1821)
* Module consolidation on datahub-web - clean up to some OS logic from previous update - initial implementation of virtual assistant

* Fix accidental change to datahub user module license
2020-08-28 10:31:15 -07:00

20 lines
865 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Component | entity-alert-banner', function(hooks): void {
setupRenderingTest(hooks);
test('it renders', async function(assert): Promise<void> {
// TODO META-11234: Refactor entity alert banner to be generic
await render(hbs`<EntityAlertBanner />`);
assert
.dom()
.hasText(
'This dataset will be deprecated by May 31st 2020 as part of a company wide horizontal initiative HI 316 . Once deprecated the dataset wont available there after. Please visit the dataset list to view SOT (Source of Truth) replacement dataset options. For more information, including contact information, please view the wiki .'
);
});
});