Skip to content

Commit

Permalink
fix test - array's order
Browse files Browse the repository at this point in the history
  • Loading branch information
petersg83 committed Nov 29, 2022
1 parent bbd318d commit 5d9faf3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -436,7 +436,7 @@ describe('Admin API Token v2 CRUD (api)', () => {
expect(res.body.data).toMatchObject({
accessKey: expect.any(String),
name: body.name,
permissions: body.permissions,
permissions: expect.arrayContaining(body.permissions),
description: body.description,
type: body.type,
id: expect.any(Number),
Expand Down

0 comments on commit 5d9faf3

Please sign in to comment.