Skip to content

Commit

Permalink
test: update integration tests for creating a folder
Browse files Browse the repository at this point in the history
  • Loading branch information
tericcabrel committed Jun 23, 2024
1 parent 8396479 commit 643a67b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ describe('Test Folder Feature', () => {
id
name
isFavorite
isArchived
isHidden
subFolders {
id
}
Expand Down Expand Up @@ -163,7 +165,9 @@ describe('Test Folder Feature', () => {
expect(createFolder).toMatchObject({
__typename: 'Folder',
id: expect.any(String),
isArchived: false,
isFavorite: false,
isHidden: false,
name: 'My First Folder',
parent: { id: user.rootFolderId },
subFolders: [],
Expand Down

0 comments on commit 643a67b

Please sign in to comment.