mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-12 23:08:35 +00:00
Fixed challenge count check (#10215)
This commit is contained in:
parent
1f7fc594e5
commit
ed607d2bae
1 changed files with 1 additions and 1 deletions
|
|
@ -267,7 +267,7 @@ describe('GET challenges/user', () => {
|
|||
it('does not page challenges if page parameter is absent', async () => {
|
||||
const challenges = await user.get('/challenges/user');
|
||||
|
||||
expect(challenges.length).to.eql(12);
|
||||
expect(challenges.length).to.be.above(11);
|
||||
});
|
||||
|
||||
it('paginates challenges', async () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue