diff --git a/package-lock.json b/package-lock.json index b31fa10..67976e4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15683,10 +15683,11 @@ } }, "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "dev": true, + "license": "MIT" }, "node_modules/lodash-es": { "version": "4.17.22", diff --git a/tests/cypress/e2e/insert-character-in-post.test.js b/tests/cypress/e2e/insert-character-in-post.test.js index e73a581..aafec1a 100644 --- a/tests/cypress/e2e/insert-character-in-post.test.js +++ b/tests/cypress/e2e/insert-character-in-post.test.js @@ -10,8 +10,8 @@ describe( 'Insert character in post', () => { it( 'Admin can add character in post and save it', () => { cy.createPost( { - title: 'Page with special characters', - postType: 'page', + title: 'Post with special characters', + postType: 'post', } ); cy.window().then( ( win ) => { @@ -72,7 +72,7 @@ describe( 'Insert character in post', () => { } ); it( 'Verify the character on the front end', () => { - cy.visit( `${ Cypress.config().baseUrl }/page-with-special-characters` ); + cy.visit( `${ Cypress.config().baseUrl }/post-with-special-characters` ); cy.get( 'body' ).invoke( 'text' ).then( text => { if ( text.includes( 'Hello world∀' ) ) {