X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fe2e%2Fsrc%2Futils%2Fhooks.ts;h=889cf1d86cee7cdfe1306760d2f94d8c5f29e1b1;hb=ca4bd9667dc06cf4c84d0399f399e4251027a167;hp=e42c6a5d8b04cc149ca4b8efd656ffce60ce8cfe;hpb=3cf68b869decf07ff7435fe1436d4f3134df1bf4;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/e2e/src/utils/hooks.ts b/client/e2e/src/utils/hooks.ts index e42c6a5d8..889cf1d86 100644 --- a/client/e2e/src/utils/hooks.ts +++ b/client/e2e/src/utils/hooks.ts @@ -55,10 +55,26 @@ function buildConfig (suiteFile: string = undefined) { comments_enabled: false, privacy: 4, licence: 4 + }, + p2p: { + webapp: { + enabled: false + }, + embed: { + enabled: false + } } } } } + if (filename === 'signup.e2e-spec.ts') { + return { + signup: { + enabled: true + } + } + } + return {} }