]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
ci: store test results
authorEduardo San Martin Morote <posva13@gmail.com>
Mon, 25 May 2020 09:36:16 +0000 (11:36 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Mon, 25 May 2020 09:36:42 +0000 (11:36 +0200)
circle.yml
e2e/transitions/index.ts

index 7f36143ab429f4eb9b00ca5fa51568f35b6f16a8..78152a938d2c505de54ae7359de4d055dd35e894 100644 (file)
@@ -46,6 +46,8 @@ jobs:
           path: e2e/reports
       - store_artifacts:
           path: e2e/screenshots
+      - store_test_result:
+          path: e2e/reports
 
   test-unit:
     <<: *defaults
index a654d8a497bf2e4f9a40182827e260ccc2bb8de4..8745d507787d4459d6a067a783d73b620cbb9e7e 100644 (file)
@@ -106,4 +106,5 @@ const app = createApp({
 })
 app.use(router)
 
-window.vm = app.mount('#app')
+// wait to avoid initial transition
+router.isReady().then(() => (window.vm = app.mount('#app')))