▲ | o1o1o1 9 hours ago | |
Thanks for sharing, this looks interesting. However, I do not see a big advantage over Cypress tests. The article mentions shortcomings of Cypress (and Playwright): > They start a dev server with bootstrapping code to load the component and/or setup code you want, which limits their ability to handle complex enterprise applications that might have OAuth or a complex build pipeline. The simple solution is to containerise the whole application (including whatever OAuth provider is used), which then allows you to simply launch the whole thing and then run the tests. Most apps (especially in enterprise) should already be containerised anyway, so most of the times we can just go ahead and run any tests against them. How is SafeTest better than that when my goal is to test my application in a real world scenario? |