blob: 08572b6f09c121a84aa5bc0898a7ad0bb9f1281d [file] [log] [blame]
/**
* @license
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import '../../../test/common-test-setup';
import './gr-linked-chip';
import {GrLinkedChip} from './gr-linked-chip';
import {queryAndAssert, waitEventLoop} from '../../../test/test-utils';
import {fixture, html, assert} from '@open-wc/testing';
import {GrButton} from '../gr-button/gr-button';
suite('gr-linked-chip tests', () => {
let element: GrLinkedChip;
setup(async () => {
element = await fixture(html`<gr-linked-chip></gr-linked-chip>`);
});
test('renders', () => {
assert.shadowDom.equal(
element,
/* HTML */ `<div class="container">
<a href=""> <gr-limited-text> </gr-limited-text> </a>
<gr-button
aria-disabled="false"
class="remove"
hidden=""
id="remove"
link=""
role="button"
tabindex="0"
>
<gr-icon icon="close"></gr-icon>
</gr-button>
</div>`
);
});
test('remove fired', async () => {
const spy = sinon.spy();
element.addEventListener('remove', spy);
await waitEventLoop();
queryAndAssert<GrButton>(element, '#remove').click();
assert.isTrue(spy.called);
});
});