Skip to content

Commit a72474d

Browse files
committedFeb 20, 2025·
E2E: Update expected api_host values to match the new defaults.
1 parent 63ed2dc commit a72474d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/e2e/admin-settings/api_host.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ test.describe('[Admin Settings] [Field] API Host', () => {
2828
test('is AspireCloud by default', async ({ page }) => {
2929
await page.check(fieldSelector + enable);
3030
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');
3232
});
3333

3434
test('has a bleeding edge option', async ({ page }) => {
3535
await page.check(fieldSelector + enable);
3636
await expect(page.locator(fieldSelector + api_host)).toBeVisible();
3737

3838
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');
4040
});
4141

4242
test('has an Other option', async ({ page }) => {

0 commit comments

Comments
 (0)
Please sign in to comment.