1 how to add unit tests and E2E tests to an existing project (are there any other tests)
a. How do unit tests divide units? so many function points each function point is a series of processes how to ensure coverage?
b.e2e test determines which interactions to test (read in an article that you shouldn"t write too many interaction tests or you can"t finish the test in a short time)
c.vue project usually uses vue-test to do automated testing.
2 ssr
a. Ssr is to improve seo search results and then directly return the entire html static page on the server when the crawler visits the page (is there any other use)
b. How to use ssr in a vue project that has already been built