Skip to content

Commit

Permalink
Review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jdvictoria committed May 14, 2024
1 parent 7e4a0a9 commit 9e09d00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
3 changes: 1 addition & 2 deletions e2e/testcafe-devextreme/tests/accessibility/drawer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ const options: Options<Properties> = {
hint: [undefined, 'hint'],
revealMode: ['slide', 'expand'],
opened: [true, false],
position: ['top', 'bottom', 'left', 'right'],
template: [() => {
const $drawerContent = $('<div>').width(200).css('background-color', 'aqua').css('height', '100%');
const $drawerContent = $('<div>').width(200).css('height', '100%');
return $drawerContent;
}],
};
Expand Down
16 changes: 5 additions & 11 deletions e2e/testcafe-devextreme/tests/accessibility/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,18 @@ import { Options } from '../../helpers/generateOptionMatrix';
fixture.disablePageReloads`Accessibility`
.page(url(__dirname, '../container.html'));

const markersData = [{
location: '40.7825, -73.966111',
}, {
location: [40.755833, -73.986389],
}, {
location: { lat: 40.753889, lng: -73.981389 },
}, {
location: 'Brooklyn Bridge,New York,NY',
},
const markersData = [
{ location: '40.7825, -73.966111' },
{ location: [40.755833, -73.986389] },
{ location: { lat: 40.753889, lng: -73.981389 } },
{ location: 'Brooklyn Bridge,New York,NY' },
];

const options: Options<Properties> = {
provider: ['bing'],
apiKey: [{
bing: 'Aq3LKP2BOmzWY47TZoT1YdieypN_rB6RY9FqBfx-MDCKjvvWBbT68R51xwbL-AqC',
}],
height: [undefined, 400],
width: [undefined, '50%'],
hint: [undefined, 'hint'],
controls: [true, false],
zoom: [undefined, 10],
Expand Down

0 comments on commit 9e09d00

Please sign in to comment.