()
| 1060 | }); |
| 1061 | |
| 1062 | function updateUrl() { |
| 1063 | const searchUrl = assembleParams({ |
| 1064 | test: app.currentTestName, |
| 1065 | runConfig: JSON.stringify(app.runConfig) |
| 1066 | }); |
| 1067 | history.pushState({}, '', location.pathname + '?' + searchUrl); |
| 1068 | } |
| 1069 | |
| 1070 | // Only update url when version is changed. |
| 1071 | app.$watch('runConfig', (newVal, oldVal) => { |
no test coverage detected