Skip to content

Commit

Permalink
Merge pull request #202 from MetaCell/fix/testfoldernumber
Browse files Browse the repository at this point in the history
fixed expect
  • Loading branch information
jrmartin authored Jan 9, 2024
2 parents 5dc3f9c + 5cb6cd2 commit d135da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/e2e.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ describe("SDS Viewer e2e Test: Sparc Dataset", () => {
const folder = await page.$$(selectors.LOADED_DATASET_SELECTOR)
const folder_lenght = folder.length

expect(folder_lenght).toBe(2)
expect(folder_lenght).toBeGreaterThan(2)

await console.log('... taking snapshot ...')
expect(await page.screenshot())
Expand Down

0 comments on commit d135da2

Please sign in to comment.