JS Testing
Just grabbing some miscellaneous facts about the js tests.
tag: :js or type: :js in system and request tests make capybara use chrome headless, and wait for js.
interestingly, initializeBaseApp
is the function that's awaited (or waited to be defined) - typeof is function - basically the file that's loaded defining this function (base.js.erb) also immediately calls the function - so the existence of the definition is evidence of its execution.
initializeBaseApp calls initializePage
(or passes that to InstantClick
, which I assume calls it on ready state?) - and we call initializeBaseApp at the end of that file:
In my "I don't understand javascript" confusion - I wondered why "call function initializePage by name" was something that needed a closure - but I believe, if I understand it correctly, the closure exists to provide access to a named function that's not exported/public/global - or might not be?
I personally, maybe it's schemelang leaking through, would assume this were expressed better as a simply function arg:
Last updated
Was this helpful?