We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a251c4 commit cda31ceCopy full SHA for cda31ce
components/inputs/test/input-time.vdiff.js
@@ -135,13 +135,15 @@ describe('d2l-input-time', () => {
135
136
it('dropdown open keydown top', async() => {
137
const elem = await fixture(create({ value: '00:15:00' }), { viewport });
138
- await sendKeysElem(elem, 'press', 'Enter');
+ sendKeysElem(elem, 'press', 'Enter');
139
+ await oneEvent(elem, 'd2l-dropdown-open');
140
await expect(elem).to.be.golden();
141
});
142
143
it('dropdown open keydown selected', async() => {
144
const elem = await fixture(create({ value: '02:00:00' }), { viewport });
145
146
147
148
149
0 commit comments