We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 494e793 commit 606e37eCopy full SHA for 606e37e
circle.yml
@@ -46,6 +46,8 @@ jobs:
46
path: e2e/reports
47
- store_artifacts:
48
path: e2e/screenshots
49
+ - store_test_result:
50
+ path: e2e/reports
51
52
test-unit:
53
<<: *defaults
e2e/transitions/index.ts
@@ -106,4 +106,5 @@ const app = createApp({
106
})
107
app.use(router)
108
109
-window.vm = app.mount('#app')
+// wait to avoid initial transition
110
+router.isReady().then(() => (window.vm = app.mount('#app')))
0 commit comments