Filipe Giusti

Results 8 comments of Filipe Giusti

I haven't tested but I would expect the below to work. ``` ruby class Company < ActiveRecord::Base has_many :company_media has_many :photos, -> { where(actable_type: 'Photo') }, through: :company_media has_many :videos,...

+1 for running `rbenv rehash` after a new gem gets installed

How about ```js const row = getByText('Jane', { closest: 'row' }) fireEvent.click( within(row).getByText('Delete') ) ``` or ```js const row = within(getByRole('cell', {name: 'Jane'})).getByClosestRole('row') fireEvent.click( within(row).getByText('Delete') ) ``` The general idea...

Exactly, those are further api proposals. As this is from May I don't expect it to be ever approved.

`autotest -f` isn't working on 0.0.6. Verbose shows the files changes are happening but no tests are run, `CTRL + C` didn't run the full suite either.