mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* Fixes #280 - adds territory focus buttons for Alaska, Hawaii, Lower 48, and Puerto Rico to enable easy zoom to these locations * Adding tests - Specifically: * Adding VSCode debug command for Cypress and debug port specification * Disabling CORS on local tests * Adding waitForMapIdle Cypress test helper * Adding constants for easy change and access
28 lines
686 B
JavaScript
28 lines
686 B
JavaScript
/* MAP */
|
|
|
|
// For some interactions, we need access to the underlying map
|
|
// Below adapted from https://github.com/codeforcologne/edelgard-map
|
|
Cypress.Commands.add('getMap', () => {
|
|
return cy.window().its('underlyingMap');
|
|
});
|
|
|
|
Cypress.Commands.add('waitForMove', (map) => {
|
|
return new Cypress.Promise((resolve) => {
|
|
map.on('moveend', resolve);
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('panTo', (map, lngLat) => {
|
|
map.panTo(lngLat);
|
|
cy.waitForMove(map);
|
|
});
|
|
|
|
Cypress.Commands.add('getMapCanvas', () => {
|
|
return cy.get('.maplibregl-canvas');
|
|
});
|
|
|
|
Cypress.Commands.add('waitForMapIdle', (map) => {
|
|
return new Cypress.Promise((resolve) => {
|
|
map.once('idle', resolve);
|
|
});
|
|
});
|