File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
tests/electron/critical-path/a-first-start-form Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,11 @@ export class Common {
28
28
static mockSettingsResponse ( ) : RequestMock {
29
29
return RequestMock ( )
30
30
. onRequestTo ( settingsApiUrl )
31
- . respond ( mockedSettingsResponse , 200 ) ;
31
+ . respond ( mockedSettingsResponse , 200 , {
32
+ 'Access-Control-Allow-Origin' : '*' ,
33
+ 'Access-Control-Allow-Credentials' : 'true' ,
34
+ 'Access-Control-Allow-Headers' : 'x-window-id'
35
+ } ) ;
32
36
}
33
37
34
38
static async waitForElementNotVisible ( elm : Selector ) : Promise < void > {
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import { UserAgreementDialog } from '../../../../pageObjects/dialogs';
7
7
const userAgreementDialog = new UserAgreementDialog ( ) ;
8
8
const myRedisDatabasePage = new MyRedisDatabasePage ( ) ;
9
9
10
- // Skipped due to unworking mocs to refresh eula https://redislabs.atlassian.net/browse/RI-5868
11
10
fixture `Agreements Verification`
12
11
. meta ( { type : 'critical_path' , rte : rte . none } )
13
12
. page ( commonUrl )
You can’t perform that action at this time.
0 commit comments