From 606e37efc1fe52caeebda2afa1202290c4ddaa6e Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 25 May 2020 11:36:16 +0200 Subject: [PATCH] ci: store test results --- circle.yml | 2 ++ e2e/transitions/index.ts | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 7f36143a..78152a93 100644 --- a/circle.yml +++ b/circle.yml @@ -46,6 +46,8 @@ jobs: path: e2e/reports - store_artifacts: path: e2e/screenshots + - store_test_result: + path: e2e/reports test-unit: <<: *defaults diff --git a/e2e/transitions/index.ts b/e2e/transitions/index.ts index a654d8a4..8745d507 100644 --- a/e2e/transitions/index.ts +++ b/e2e/transitions/index.ts @@ -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'))) -- 2.39.5