-
-
Notifications
You must be signed in to change notification settings - Fork 85
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
CI: Use stable version of Quickdraw #742
CI: Use stable version of Quickdraw #742
Conversation
But, also add a separate job that runs with edge version of Quickdraw.
885837d
to
5c44705
Compare
Finding a stable version of Quickdraw and fixing the Phlex tests was a bit harder than anticipated. But it seems to work now (apart from the truffleruby-23.1 error which I haven’t looked into). |
e500af1
to
64b06e9
Compare
64b06e9
to
1e71492
Compare
output = grab({ class: "foo" }) | ||
expect(output) == ["foo"] | ||
output = grab(class: "foo") | ||
expect(output) == "foo" |
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.
I am unsure about this change. Is it intentional that #grab
sometimes returns an Array and sometimes a String?
I will be unable to work on this PR for the next week or so. @joeldrapper If you feel like it, please take over and change it as you like. |
Thank you! |
But, also add a separate job that runs with edge version of Quickdraw.
Some tests were failing because they had no expectation (I added one), and some were failing because they didn’t match the implementation (I changed the tests to match).