Skip to content

Commit

Permalink
fix testcafe
Browse files Browse the repository at this point in the history
  • Loading branch information
pomahtri committed Nov 7, 2024
1 parent a413599 commit cd2c61e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('it should correctly drag external item to the appointment after drag appoi
.expect((await appt01.element.boundingClientRect).top)
.eql(208)
.dragToElement(dragItem, appt02.element, { speed: 0.5 })
.expect(appt02.element.getAttribute('data-status'))
.expect(appt02.element.find('.dx-item-content').getAttribute('data-status'))
.eql('Added');
}).before(async () => {
await appendElementTo('#container', 'div', 'list');
Expand Down

0 comments on commit cd2c61e

Please sign in to comment.