Ajoute un test d'intégration

Pour la détection de l'entreprise via le cookie Urssaf
pull/2057/head
Maxime Quandalle 2022-04-13 17:58:00 +02:00 committed by Maxime Quandalle
parent e46024e3ec
commit f3a82794c7
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
const fr = Cypress.env('language') === 'fr'
describe("Détection de l'entreprise depuis le cookie urssaf.fr", function () {
if (!fr) {
return
}
before(function () {
cy.setCookie(
'EnLigne',
'siret=34473897600010&nom=Magnin&prenom=Clarisse&sl_retour_service='
)
return cy.visit('/')
})
it('should display the name of the company set in the cookie', function () {
cy.contains('MC KINSEY', { timeout: 10000 })
})
})