From 1845a0f21a81ecf589fef0543e0189187e049f6d Mon Sep 17 00:00:00 2001 From: Nathanael Noblet Date: Thu, 26 Jul 2018 21:42:57 -0600 Subject: [PATCH] Use a session name by default It seems that a session name is required for the login functionality to work. This updates the documentation to include a default config/session name. It fixes #400 --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e01f72a0..4c131f0c 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ Installation # app/config/config_test.yml liip_functional_test: ~ ``` - Ensure that the framework is using the filesystem for session storage: + Ensure that the framework sets the session name and is using the filesystem for session storage: ```yaml # app/config/config_test.yml @@ -102,6 +102,7 @@ Installation test: ~ session: storage_id: session.storage.mock_file + name: MOCKSESSION ``` Basic usage