Skip to content

Commit 606e37e

Browse files
committed
ci: store test results
1 parent 494e793 commit 606e37e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

circle.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ jobs:
4646
path: e2e/reports
4747
- store_artifacts:
4848
path: e2e/screenshots
49+
- store_test_result:
50+
path: e2e/reports
4951

5052
test-unit:
5153
<<: *defaults

e2e/transitions/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,5 @@ const app = createApp({
106106
})
107107
app.use(router)
108108

109-
window.vm = app.mount('#app')
109+
// wait to avoid initial transition
110+
router.isReady().then(() => (window.vm = app.mount('#app')))

0 commit comments

Comments
 (0)