-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add initializing the browse list to the steps for running the tests #3805
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I had 16 failures until I initialized the browse lists ``` Finished in 8 minutes 52 seconds (files took 5.6 seconds to load) 1722 examples, 16 failures, 22 pending Failed examples: rspec ./spec/features/browsables_spec.rb:11 # Browsables Browse by Call Number with an LC call number displays two browse entries before exact match rspec ./spec/features/browsables_spec.rb:14 # Browsables Browse by Call Number with an LC call number has a call number link rspec ./spec/features/browsables_spec.rb:17 # Browsables Browse by Call Number with an LC call number has the library name if it exists rspec ./spec/features/browsables_spec.rb:26 # Browsables Browse by Call Number with oversize CDs sorts Oversize CDs with other CDs rspec ./spec/requests/orangelight/browse_spec.rb:26 # Orangelight Browsables Paging Functionality per page value can be set rspec ./spec/requests/orangelight/browse_spec.rb:31 # Orangelight Browsables Paging Functionality start parameter sets which db entry to return first rspec ./spec/requests/orangelight/browse_spec.rb:37 # Orangelight Browsables Paging Functionality sets rpp=50 if rpp value is not in [10, 25, 50, 100] rspec ./spec/requests/orangelight/browse_spec.rb:43 # Orangelight Browsables Paging Functionality shows last complete page if start param > db entries for any accepted rpp rspec ./spec/requests/orangelight/browse_spec.rb:55 # Orangelight Browsables Paging Functionality shows the first page if start param < 1 rspec ./spec/requests/orangelight/browse_spec.rb:63 # Orangelight Browsables Browse Call Number Search escapes call number browse link urls rspec ./spec/requests/orangelight/browse_spec.rb:67 # Orangelight Browsables Browse Call Number Search displays full publisher information rspec ./spec/requests/orangelight/browse_spec.rb:72 # Orangelight Browsables Browse Call Number Search displays pub_created_vern_display field rspec ./spec/requests/orangelight/browse_spec.rb:77 # Orangelight Browsables Browse Call Number Search displays author_s when author_display is not present rspec ./spec/requests/orangelight/browse_spec.rb:86 # Orangelight Browsables Multiple locations/titles formats multiple titles as n titles with this call number rspec ./spec/requests/orangelight/browse_spec.rb:92 # Orangelight Browsables Multiple locations/titles single title with multiple holdings in same location, display single location rspec ./spec/requests/orangelight/browse_spec.rb:98 # Orangelight Browsables Multiple locations/titles single title with multiple locations ```
christinach
reviewed
Nov 2, 2023
README.md
Outdated
@@ -76,6 +76,9 @@ bundle exec cap staging deploy # deploys main branch to staging | |||
``` | |||
*Note: You can stop everything with `rake servers:stop` | |||
|
|||
1. initialiaze the browse lists |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks @carolyncole . Can you correct the typo to -> initialize
carolyncole
commented
Nov 2, 2023
Thanks @christinach
christinach
approved these changes
Nov 2, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @carolyncole !
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I had 16 failures until I initialized the browse lists