-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decouple cucumber report footer from landing page and individual modules #88
Conversation
Issue with linting or unit tests detected.
For more information on our linting policies, please see our Linting-Guide. |
@bpvstaty366 Question: Is this only for combined runs or does it work for individual module runs? Say if only account is being run, will the inner page of account feature have the custom footer or the common footer from the home page? |
Question 2: The common footer in the landing page is right now fetched from the reportEnv.json in Lambda, is that something that can be overriden in FCS? We need the ability to customize the common footer as well without actually modifying anything in Lambda |
|
Can we put the
|
Issue with linting or unit tests detected.
For more information on our linting policies, please see our Linting-Guide. |
cypress/plugins/index.js
Outdated
@@ -298,7 +298,14 @@ module.exports = async (on, config) => { | |||
jsonReport = readDataFromFile(filePath + fileName); | |||
} | |||
const reportProperties = {}; | |||
let customReportData; | |||
try { | |||
customReportData = require('../../node_modules/configModule/cypress/fixtures/objects/customReportData.json'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you confirm if this does not get copied to FCS/cypress/fixtures/external
when the setup is being done?
…ausing some of the examples to be cut off.
No description provided.