Definitely! It really changes. Slightly even day by day. Have to set VK up in work too.
I am trying to decrease the handholding as much as possible. Did you find any good solution for that?
Login to reply
Replies (4)
Invest time in building test harnesses.
E.g. Playwright and Maestro.
Let it run your app/process fully end to end, and insist it does so and assess it as success before it returns.
I am already doing something on these lines. The big disadvantage of, at least playwright, is that it can take a lot of time for testing, making your loop longer. I guess you also notice this issue.
A great solution I found for this is, making a cli first architecture, and then it is simpler to test. The UI only is a thin layer of visualization. If you can move 100% of the features into the cli, your web tests will be minimal, because the features will be fully end-2-end testable via the cli.
Peter Steinberger
Peter Steinberger: AI-powered tools from Swift roots to web frontiers. Every commit lands on GitHub for you to fork & remix.
I read the idea from him too.