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
The page size is 20, so that line is looking for the string "Test 21" in the page content, and is finding it even though it should not be found.
After much head scratching and debugging I finally figured out that for some reason the sort order in CI is backwards. (I have no idea why that might be the case.)
So "Test 21" is actually on the page, but the first item "Test 1" is missing.
But there's actually a test to check for "Test 1" that is passing when it shouldn't pass. And that's because we're doing simple substring matching and "Test 1" also matches "Test 11", "Test 12", etc...
The text was updated successfully, but these errors were encountered:
For some reason the pagination system test is failing for me in CI, but not locally.
This line is failing for me:
The page size is 20, so that line is looking for the string "Test 21" in the page content, and is finding it even though it should not be found.
After much head scratching and debugging I finally figured out that for some reason the sort order in CI is backwards. (I have no idea why that might be the case.)
So "Test 21" is actually on the page, but the first item "Test 1" is missing.
But there's actually a test to check for "Test 1" that is passing when it shouldn't pass. And that's because we're doing simple substring matching and "Test 1" also matches "Test 11", "Test 12", etc...
The text was updated successfully, but these errors were encountered: