mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
12 lines
350 B
JavaScript
12 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');
|
||
|
});
|
||
|
});
|