mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 22:59:07 +00:00
Fix BASE_URL construction in Config.ts and SignUp.test.ts
This commit is contained in:
parent
73e6a20503
commit
894d15918b
@ -12,4 +12,4 @@ export const HOST: string = env('HOST') || 'localhost';
|
||||
export const HTTP_PROTOCOL: Protocol =
|
||||
env('HTTP_PROTOCOL') === 'https' ? Protocol.HTTPS : Protocol.HTTP;
|
||||
|
||||
export const BASE_URL: URL = URL.fromString(`${HTTP_PROTOCOL}://${HOST}`);
|
||||
export const BASE_URL: URL = URL.fromString(`${HTTP_PROTOCOL}${HOST}`);
|
||||
|
@ -6,5 +6,7 @@ test.beforeEach(async ({ page }: { page: Page }) => {
|
||||
});
|
||||
test('sign up button', async ({ page }: { page: Page }) => {
|
||||
await page.getByTestId('Sign-up').click();
|
||||
await expect(page).toHaveURL(BASE_URL + '/accounts/register');
|
||||
await expect(page).toHaveURL(
|
||||
BASE_URL.addRoute('/accounts/register').toString()
|
||||
);
|
||||
});
|
||||
|
@ -1,4 +1,6 @@
|
||||
|
||||
{{- if $.Values.cronJobs.e2e.enabled }}
|
||||
|
||||
apiVersion: batch/v1
|
||||
kind: CronJob
|
||||
metadata:
|
||||
@ -7,7 +9,7 @@ metadata:
|
||||
labels:
|
||||
appname: oneuptime
|
||||
spec:
|
||||
schedule: "*/30 * * * *" # At every 30 minute.
|
||||
schedule: "*/5 * * * *" # At every 30 minute.
|
||||
jobTemplate:
|
||||
spec:
|
||||
template:
|
||||
@ -18,3 +20,5 @@ spec:
|
||||
env:
|
||||
{{- include "oneuptime.env.common" . | nindent 14 }}
|
||||
restartPolicy: Never
|
||||
|
||||
{{- end }}
|
@ -195,4 +195,6 @@ logLevel: ERROR
|
||||
cronJobs:
|
||||
cleanup:
|
||||
enabled: false
|
||||
e2e:
|
||||
enabled: false
|
||||
|
Loading…
Reference in New Issue
Block a user