Skip to content

Commit

Permalink
Fix things
Browse files Browse the repository at this point in the history
  • Loading branch information
dlockhart authored and bearfriend committed Jul 19, 2023
1 parent f5640f1 commit 3a5f2f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/list/test/list.vdiff.js
Original file line number Diff line number Diff line change
Expand Up @@ -482,13 +482,13 @@ describe('d2l-list', () => {
await expect(elem).to.be.golden();
});

it('selected focus', async() => {
it('selected focus shadow', async() => {
const elem = await fixture(selectableSelectedFixture);
await focusElem(elem.querySelector('[key="1"]').shadowRoot.querySelector('d2l-selection-input'));
await expect(elem).to.be.golden({ margin: 24 });
});

it('selected focus', async() => {
it('selected focus light', async() => {
const elem = await fixture(selectableSelectedFixture);
await hoverElem(elem.querySelector('[key="1"]'));
await expect(elem).to.be.golden({ margin: 24 });
Expand Down
2 changes: 1 addition & 1 deletion tools/constructor-test-helper.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { expect } from '@open-wc/testing';
import { expect } from '@brightspace-ui/testing';

export function runConstructor(nodeName) {
const ctor = customElements.get(nodeName);
Expand Down

0 comments on commit 3a5f2f6

Please sign in to comment.