mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
Use mailcatcher for minimal config setup.
This commit is contained in:
parent
43102d9fae
commit
9a0e5290d1
|
@ -86,8 +86,8 @@ regulation:
|
|||
|
||||
notifier:
|
||||
# For testing purpose, notifications can be sent in a file
|
||||
filesystem:
|
||||
filename: /tmp/authelia/notification.txt
|
||||
# filesystem:
|
||||
# filename: /tmp/authelia/notification.txt
|
||||
|
||||
# Use your email account to send the notifications. You can use an app password.
|
||||
# List of valid services can be found here: https://nodemailer.com/smtp/well-known/
|
||||
|
@ -98,11 +98,11 @@ notifier:
|
|||
## service: gmail
|
||||
|
||||
# Use a SMTP server for sending notifications
|
||||
#smtp:
|
||||
# username: test
|
||||
# password: password
|
||||
# secure: false
|
||||
# host: 'smtp'
|
||||
# port: 1025
|
||||
# sender: admin@example.com
|
||||
smtp:
|
||||
username: test
|
||||
password: password
|
||||
secure: false
|
||||
host: 'smtp'
|
||||
port: 1025
|
||||
sender: admin@example.com
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import Bluebird = require("bluebird");
|
||||
import loginAndRegisterTotp from "../helpers/login-and-register-totp";
|
||||
import LoginAndRegisterTotp from "../helpers/login-and-register-totp";
|
||||
import VisitPage from "../helpers/visit-page";
|
||||
import FillLoginPageWithUserAndPasswordAndClick from "../helpers/fill-login-page-and-click";
|
||||
import WithDriver from "../helpers/with-driver";
|
||||
|
@ -12,7 +12,7 @@ describe("Keep me logged in", function() {
|
|||
|
||||
before(function() {
|
||||
const that = this;
|
||||
return loginAndRegisterTotp(this.driver, "john")
|
||||
return LoginAndRegisterTotp(this.driver, "john", true)
|
||||
.then(function(secret: string) {
|
||||
that.secret = secret;
|
||||
if(!secret) return Bluebird.reject(new Error("No secret!"));
|
||||
|
|
|
@ -25,7 +25,7 @@ describe('Fail TOTP challenge', function() {
|
|||
describe('successfully login as john', function() {
|
||||
before(function() {
|
||||
const that = this;
|
||||
return LoginAndRegisterTotp(this.driver, "john");
|
||||
return LoginAndRegisterTotp(this.driver, "john", true);
|
||||
});
|
||||
|
||||
describe('fail second factor', function() {
|
||||
|
|
|
@ -14,7 +14,7 @@ describe('Registering TOTP', function() {
|
|||
describe('successfully login as john', function() {
|
||||
before('register successfully', function() {
|
||||
this.timeout(10000);
|
||||
return LoginAndRegisterTotp(this.driver, "john");
|
||||
return LoginAndRegisterTotp(this.driver, "john", true);
|
||||
})
|
||||
|
||||
it("should see generated qrcode", function() {
|
||||
|
|
|
@ -24,7 +24,7 @@ describe('Validate TOTP factor', function() {
|
|||
describe('successfully login as john', function() {
|
||||
before(function() {
|
||||
const that = this;
|
||||
return LoginAndRegisterTotp(this.driver, "john")
|
||||
return LoginAndRegisterTotp(this.driver, "john", true)
|
||||
.then(function(secret: string) {
|
||||
that.secret = secret;
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue
Block a user