You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Failed asserting that two strings are equal.
Expected :'success'
Actual :'danger'
Sure. Good to know but I still don't understand why it fails. I can swap the order and inspect flash-message first.
Failed asserting that two strings are equal.
Expected :'Changes saved successfully.'
Actual :'You do not have permissions to update status on this task.'
Failed asserting that two arrays are equal.
Array (
- 'flash-class' => 'success'
- 'flash-message' => 'Oppdateringen ble lagret'
+ 'flash-class' => 'danger'
+ 'flash-message' => 'Du har ikke tilgang til å endre status på denne oppgaven.'
)
I like this output. I find it good to get as much info in the error message as possible.
To the question. What do you think? am I wrong? is there a better why to achive this? assertSessionHasAll exists but it loops over the array and asserts each key. We could change the function to work more like this one?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I have the following test
and it fails with this message
Sure. Good to know but I still don't understand why it fails. I can swap the order and inspect flash-message first.
That is more helpful! 🎉
Not that happy still. I think we can do better.
I like this output. I find it good to get as much info in the error message as possible.
To the question. What do you think? am I wrong? is there a better why to achive this? assertSessionHasAll exists but it loops over the array and asserts each key. We could change the function to work more like this one?
AI also suggested me to use
Any experience with this approach?
For the record I am using pest
Beta Was this translation helpful? Give feedback.
All reactions