Skip to content

Commit

Permalink
change folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
SwikritiT committed Sep 6, 2022
1 parent 96ff0e3 commit d8c084b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/e2e/cucumber/features/integrations/search.feature
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ Feature: link
| new-folder | folder |
| FolDer | folder |
| folderPublic | folder |
| test | folder |
| public | folder |
When "Alice" searches "fol" using the global search
Then following resources should be displayed in the search list for user "Alice"
| resource |
| folder |
| new-folder |
| FolDer |
| folderPublic |
# But following resource should not be listed in the search list for user "Alice"
# | resource |
# | test |
But following resource should not be listed in the search list for user "Alice"
| resource |
| public |
When "Alice" creates the following resources
| resource | type |
| PARENT/child | folder |
Expand Down
1 change: 1 addition & 0 deletions tests/e2e/cucumber/steps/app-files/resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ Then(
const { page } = this.actorsEnvironment.getActor({ key: stepUser })
const resourceObject = new objects.applicationFiles.Resource({ page })
const actualList = await resourceObject.getDisplayedResources()
console.log(actualList)
for (const info of stepTable.hashes()) {
const found = actualList.includes(info.resource)
expect(found).toBe(true)
Expand Down

0 comments on commit d8c084b

Please sign in to comment.