mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* mandatory eslint fix * Addresses #286 - Adding lat/lng to the URL * setting zoom on map load * adding integration tests for zoom
11 lines
350 B
JavaScript
11 lines
350 B
JavaScript
// / <reference types="Cypress" />
|
|
|
|
describe('Translation Test', () => {
|
|
it('Checks that locales have correct content', () => {
|
|
cy.visit('http://localhost:8000');
|
|
cy.url().should('include', '/en/');
|
|
cy.get('header').contains('Justice40');
|
|
cy.visit('http://localhost:8000/es');
|
|
cy.get('header').contains('Justicia40');
|
|
});
|
|
});
|