Skip to content

Commit

Permalink
remove unecessary checks in tests breaking with mysql 5
Browse files Browse the repository at this point in the history
  • Loading branch information
petersg83 committed Nov 28, 2022
1 parent 19eb795 commit 78b8319
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
Expand Up @@ -115,7 +115,6 @@ describe('Uploads folder (GraphQL)', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down Expand Up @@ -170,7 +169,6 @@ describe('Uploads folder (GraphQL)', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down Expand Up @@ -255,7 +253,6 @@ describe('Uploads folder (GraphQL)', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down Expand Up @@ -310,7 +307,6 @@ describe('Uploads folder (GraphQL)', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down
Expand Up @@ -118,7 +118,6 @@ describe('Uploads folder', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down Expand Up @@ -163,7 +162,6 @@ describe('Uploads folder', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down Expand Up @@ -230,7 +228,6 @@ describe('Uploads folder', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down Expand Up @@ -276,7 +273,6 @@ describe('Uploads folder', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down Expand Up @@ -360,7 +356,6 @@ describe('Uploads folder', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down Expand Up @@ -408,7 +403,6 @@ describe('Uploads folder', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);

uploadFolder = file.folder;
});
Expand Down Expand Up @@ -563,7 +557,6 @@ describe('Uploads folder', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);
});

expect(files.every((file) => file.folder.id === files[0].folder.id)).toBe(true);
Expand Down Expand Up @@ -625,7 +618,6 @@ describe('Uploads folder', () => {
},
folderPath: `/${file.folder.pathId}`,
});
expect(file.folder.id).not.toBe(uploadFolder.id);
});

expect(files.every((file) => file.folder.id === files[0].folder.id)).toBe(true);
Expand Down

0 comments on commit 78b8319

Please sign in to comment.