Simplify registration with email validation (#11398)

This commit is contained in:
Michael Telatynski 2023-08-15 16:14:53 +01:00 committed by GitHub
parent beafe686a9
commit 0842559fb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 437 additions and 55 deletions

View file

@ -26,6 +26,7 @@ import { webserver } from "./webserver";
import { docker } from "./docker";
import { log } from "./log";
import { oAuthServer } from "./oauth_server";
import { mailhogDocker } from "./mailhog";
/**
* @type {Cypress.PluginConfig}
@ -41,4 +42,5 @@ export default function (on: PluginEvents, config: PluginConfigOptions) {
installLogsPrinter(on, {
// printLogsToConsole: "always",
});
mailhogDocker(on, config);
}