Skip to content

Commit

Permalink
retour commentaire
Browse files Browse the repository at this point in the history
  • Loading branch information
Ornella452 committed Oct 3, 2024
1 parent 46f0e7c commit 066305c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/views/candidature-conseiller/CandidatureConseiller.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default function CandidatureConseiller() {
} else {
const conseillerData = await buildConseillerData(formData);
const resultatCreation = await creerCandidatureConseiller(conseillerData);
if (resultatCreation.status && resultatCreation.status >= 400) {
if (resultatCreation?.status >= 400) {
const error = await resultatCreation.json();
setValidationError(error.message);
window.scrollTo({ top: 0, behavior: 'smooth' });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ describe('candidature conseiller', () => {
vi.useRealTimers();
});

it('quand je remplis le formulaire et q’une erreur se produit alors un message d’erreur s’affiche', async () => {
it('quand je remplis le formulaire et qu’une erreur se produit alors un message d’erreur s’affiche', async () => {
// GIVEN
vi.useFakeTimers();
vi.setSystemTime(new Date(2023, 11, 12, 13));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function CandidatureCoordinateur() {
const formData = new FormData(event.currentTarget);
const coordinateurData = await buildCoordinateurData(formData, geoLocation, codeCommune);
const resultatCreation = await creerCandidatureCoordinateur(coordinateurData);
if (resultatCreation.status && resultatCreation.status >= 400) {
if (resultatCreation?.status >= 400) {
const error = await resultatCreation.json();
setValidationError(error.message);
window.scrollTo({ top: 0, behavior: 'smooth' });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ describe('candidature coordinateur', () => {
vi.useRealTimers();
});

it('quand je remplis le formulaire et q’une erreur se produit alors un message d’erreur s’affiche', async () => {
it('quand je remplis le formulaire et qu’une erreur se produit alors un message d’erreur s’affiche', async () => {
// GIVEN
vi.useFakeTimers();
vi.setSystemTime(new Date(2023, 11, 12, 13));
Expand Down
2 changes: 1 addition & 1 deletion src/views/candidature-structure/CandidatureStructure.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function CandidatureStructure() {
const formData = new FormData(event.currentTarget);
const structureData = await buildStructureData(formData, geoLocation, codeCommune);
const resultatCreation = await creerCandidatureStructure(structureData);
if (resultatCreation.status && resultatCreation.status >= 400) {
if (resultatCreation?.status >= 400) {
const error = await resultatCreation.json();
setValidationError(error.message);
window.scrollTo({ top: 0, behavior: 'smooth' });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ describe('candidature structure', () => {
vi.useRealTimers();
});

it('quand je remplis le formulaire et q’une erreur se produit alors un message d’erreur s’affiche', async () => {
it('quand je remplis le formulaire et qu’une erreur se produit alors un message d’erreur s’affiche', async () => {
// GIVEN
vi.useFakeTimers();
vi.setSystemTime(new Date(2023, 11, 12, 13));
Expand Down

0 comments on commit 066305c

Please sign in to comment.