Skip to content

Commit

Permalink
roledescription
Browse files Browse the repository at this point in the history
  • Loading branch information
tongsonbarbs committed Oct 10, 2024
1 parent f0af886 commit dc6b847
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/testcafe-devextreme/tests/scheduler/a11y/appointment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fixture.disablePageReloads`a11y - appointment`
const attrs = await scheduler.getAppointment('App 1').element.attributes;

await t
.expect(attrs['aria-label'])
.expect(attrs['aria-roledescription'])
.eql('February 1, 2021, Group: resource1, ');
}).before(async () => {
await createWidget('dxScheduler', {
Expand Down Expand Up @@ -63,7 +63,7 @@ fixture.disablePageReloads`a11y - appointment`
const attrs = await scheduler.getAppointment('App 1').element.attributes;

await t
.expect(attrs['aria-label'])
.expect(attrs['aria-roledescription'])
.eql('February 1, 2021, Group: resource11, resource21, ');
}).before(async () => {
await createWidget('dxScheduler', {
Expand Down Expand Up @@ -128,7 +128,7 @@ fixture.disablePageReloads`a11y - appointment`
async (i) => {
const appt = scheduler.getAppointment('App 1', i);
const attrs = await appt.element.attributes;
return attrs['aria-label'];
return attrs['aria-roledescription'];
},
));

Expand Down

0 comments on commit dc6b847

Please sign in to comment.