I am trying to setup automated DOM and Javascript testing for a legacy app which has server side rendering via JSPs.
I would like to use jasmine-jquery to test DOM manipulation but I cannot load HTML files directly since they need to be rendered by the server first. Is it possible to loadFixtures over http instead of from the file system?
I am trying to setup automated DOM and Javascript testing for a legacy app which has server side rendering via JSPs.
I would like to use jasmine-jquery to test DOM manipulation but I cannot load HTML files directly since they need to be rendered by the server first. Is it possible to loadFixtures over http instead of from the file system?
Something like this:
Thanks!