File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
integration/modules/integration-test/test-case Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,9 @@ class TestCaseResult {
9797 this . #createImage( this . #testData, '-1new' ) ;
9898 }
9999 if ( this . #testCaseObj. createImages !== "DISABLED" && ! this . #vizzuUrl. includes ( VizzuUrl . getRemoteStableBucket ( ) ) ) {
100- this . #runTestCaseRef( this . #testCaseObj, this . #browserChrome) . then ( testDataRef => {
100+ let testCaseObj = Object . assign ( { } , this . #testCaseObj) ;
101+ testCaseObj . createImages = 'ALL' ;
102+ this . #runTestCaseRef( testCaseObj , this . #browserChrome) . then ( testDataRef => {
101103 this . #createImage( testDataRef , '-2ref' ) ;
102104 this . #createDifImage( this . #testData, testDataRef ) ;
103105 this . #createTestCaseResultErrorMsg( ) ;
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ sudo apt-get update
6363sudo apt-get install google-chrome-stable
6464CHROMEVER=$(google-chrome --product-version | grep -o "[^\.]*\.[^\.]*\.[^\.]*")
6565DRIVERVER=$(curl -s "https://chromedriver.storage.googleapis.com/LATEST_RELEASE_$CHROMEVER")
66- [ -e /chromedriver/chromedriver ] && sudo rm /chromedriver/chromedriver
66+ [ -e /chromedriver ] && sudo rm -r /chromedriver/*
6767sudo wget -q --continue -P /chromedriver "http://chromedriver.storage.googleapis.com/$DRIVERVER/chromedriver_linux64.zip"
6868sudo unzip /chromedriver/chromedriver* -d /chromedriver
6969```
You can’t perform that action at this time.
0 commit comments