mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* Fixing #410 - Clicking a CBG region, then another, then hitting territory button results in random CBG being selected * Part of fix for #410 - refactoring selection logic to remove setFeatureState call. * Renaming layers for clarity and adding constants * Using constant for layer identifier * Fixes #409 - Loading a URL with lat/lng/zoom specified occasionally does not work . We now parse the URL on page before initializing the map. Also adds tests for this
33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
// / <reference types="Cypress" />
|
|
|
|
describe('LatLng Test', () => {
|
|
it('URL starts at zoom level 3', () => {
|
|
cy.visit('http://localhost:8000/en/cejst');
|
|
cy.url().should('include', '#3');
|
|
});
|
|
it('URL changes to level 4 when you hit the zoom button', () => {
|
|
cy.get('.mapboxgl-ctrl-zoom-in > .mapboxgl-ctrl-icon').click();
|
|
cy.url().should('include', '#4');
|
|
});
|
|
it('URL includes correct lat/lng coordinates', () => {
|
|
cy.getMap().then((map) => {
|
|
cy.panTo(map, [-77.9, 35.04]);
|
|
cy.url().should('include', '#4/35.04/-77.9');
|
|
});
|
|
});
|
|
it('allows user to specify alternative starting URL', () => {
|
|
const [expectedZoom, expectedLat, expectedLng] = [12.05, 41.40965, -75.65978];
|
|
const expectedURL = `http://localhost:8000/en/cejst/#${expectedZoom}/${expectedLat}/${expectedLng}`;
|
|
cy.visit(expectedURL);
|
|
cy.getMap().then((map) => {
|
|
cy.waitForMapIdle(map);
|
|
cy.url().should('equal', expectedURL);
|
|
const actualZoom = map.getZoom();
|
|
const actualCenter = map.getCenter();
|
|
expect(actualCenter.lat).to.eq(expectedLat);
|
|
expect(actualCenter.lng).to.eq(expectedLng);
|
|
expect(actualZoom).to.eq(expectedZoom);
|
|
});
|
|
});
|
|
});
|
|
|