File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ test.describe('[Admin Settings] [Field] API Host', () => {
28
28
test ( 'is AspireCloud by default' , async ( { page } ) => {
29
29
await page . check ( fieldSelector + enable ) ;
30
30
await expect ( page . locator ( fieldSelector + api_host ) ) . toBeVisible ( ) ;
31
- await expect ( page . locator ( fieldSelector + api_host ) ) . toHaveValue ( 'api.aspirecloud.net' ) ;
31
+ await expect ( page . locator ( fieldSelector + api_host ) ) . toHaveValue ( 'https:// api.aspirecloud.net' ) ;
32
32
} ) ;
33
33
34
34
test ( 'has a bleeding edge option' , async ( { page } ) => {
35
35
await page . check ( fieldSelector + enable ) ;
36
36
await expect ( page . locator ( fieldSelector + api_host ) ) . toBeVisible ( ) ;
37
37
38
38
const options = await page . locator ( fieldSelector + api_host + ' option' ) . all ( ) ;
39
- await expect ( await options [ 1 ] . getAttribute ( 'value' ) ) . toBe ( 'api.aspirecloud.io' ) ;
39
+ await expect ( await options [ 1 ] . getAttribute ( 'value' ) ) . toBe ( 'https:// api.aspirecloud.io' ) ;
40
40
} ) ;
41
41
42
42
test ( 'has an Other option' , async ( { page } ) => {
You can’t perform that action at this time.
0 commit comments