Skip to content

Commit 44fd925

Browse files
authored
e2e: use canonical HTTPS URLs in external fixtures (#3930)
1 parent 86d054b commit 44fd925

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

e2e/helpers/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const appDir = path.join(sourceRootDir, 'e2e/dist');
3939

4040
export const mattermostURL = process.env.MM_TEST_SERVER_URL ?? 'http://localhost:8065/';
4141

42-
export const exampleURL = 'http://example.com/';
42+
export const exampleURL = 'https://example.com/';
4343

4444
export const cmdOrCtrl = process.platform === 'darwin' ? 'command' : 'control';
4545

e2e/specs/server_management/bad_servers.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {buildServerMap} from '../../helpers/serverMap';
1717
const UNREACHABLE_SERVER_URL = 'https://jhsgefhjsaeiuofhseifuphoauifdhjauiowijdfcpohuawoiudfjpdhauwodjahwdpojaoiwdhawhdiuawd.com';
1818
const EXPIRED_CERT_URL = 'https://expired.badssl.com';
1919
const TLS_1_0_URL = 'https://tls-v1-0.badssl.com:1010';
20-
const TLS_1_1_URL = 'https://tls-v1-1.badssl.com';
20+
const TLS_1_1_URL = 'https://tls-v1-1.badssl.com:1011';
2121
const RC4_CIPHER_URL = 'https://rc4.badssl.com';
2222
const INSECURE_TLS_ERROR_PATTERN = /ERR_SSL_(VERSION_OR_CIPHER_MISMATCH|PROTOCOL_ERROR|OBSOLETE_CIPHER)|ERR_CONNECTION_RESET|ERR_ABORTED/;
2323

e2e/specs/server_management/drag_and_drop.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const config = {
2626
...demoMattermostConfig.servers,
2727
{
2828
name: 'google',
29-
url: 'https://google.com/',
29+
url: 'https://www.google.com/',
3030
order: 2,
3131
},
3232
],

0 commit comments

Comments
 (0)