File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed
frontend/express/public/javascripts/countly/vue Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -410,3 +410,13 @@ jobs:
410410 npm install
411411 xvfb-run --auto-servernum --server-args="-screen 0 1280x1024x24" \
412412 npm run cy:run:sdk
413+
414+ - name : Upload UI tests artifacts
415+ if : ${{ failure() }}
416+ shell : bash
417+ working-directory : /opt/countly/ui-tests/cypress
418+ run : |
419+ ARTIFACT_ARCHIVE_NAME="$(date '+%Y%m%d-%H.%M')_${GITHUB_REPOSITORY#*/}_CI#${{ github.run_number }}_ui_test_sdk.tar.gz"
420+ mkdir -p screenshots videos
421+ tar zcvf "$ARTIFACT_ARCHIVE_NAME" screenshots videos
422+ curl -o /tmp/uploader.log -u "${{ secrets.BOX_UPLOAD_AUTH }}" ${{ secrets.BOX_UPLOAD_PATH }} -T "$ARTIFACT_ARCHIVE_NAME"
Original file line number Diff line number Diff line change 894894 self . vm = new Vue ( {
895895 el : el ,
896896 store : _vuex . getGlobalStore ( ) ,
897- mixins : [
898- countlyVue . container . dataMixin ( {
899- "customOverlayComponents" : "/overlay/custom" ,
900- } )
901- ] ,
902897 components : {
903898 DummyCompAPI : DummyCompAPI ,
904899 MainView : self . component ,
910905 <GenericPopups></GenericPopups>\
911906 <DummyCompAPI></DummyCompAPI>\
912907 <QuickstartPopover></QuickstartPopover>\
913- <component v-if="customOverlayComponents" v-for="customComponent in customOverlayComponents" :key="customComponent.name" :is="customComponent.component" />\
914908 </div>' ,
915909 beforeCreate : function ( ) {
916910 this . $route . params = self . params ;
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ describe('2.Warning tooltip (old Web SDK version)', () => {
1616 goToConfigTab ( true ) ;
1717 checkTooltipAppears ( 'warning' ) ;
1818 } ) ;
19- } ) ;
19+ } ) ;
You can’t perform that action at this time.
0 commit comments