You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Thanks for the package, it is great!
I'm trying to setup e2e tests with SSR with Cypress. The official e2e-cypress-cli-plugin does not allow to specify to run an alternative command to 'serve' (here ssr:serve) so I overcame the problem by creating a custom service such as :
ssr:serve signature is pretty different from the traditional serve and this code up there ⬆️ wasn't await the initial compilation like you would expect from serve.
PR
In order to be able to wait for the initial compilation before starting e2e tests, I had to return the readyPromise from the app middleware.
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for the package, it is great!
I'm trying to setup e2e tests with SSR with Cypress. The official e2e-cypress-cli-plugin does not allow to specify to run an alternative command to 'serve' (here
ssr:serve
) so I overcame the problem by creating a custom service such as :Problem
ssr:serve
signature is pretty different from the traditionalserve
and this code up there ⬆️ wasn't await the initial compilation like you would expect fromserve
.PR
In order to be able to wait for the initial compilation before starting e2e tests, I had to return the
readyPromise
from the app middleware.The text was updated successfully, but these errors were encountered: