mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-06 11:20:56 -05:00
8dd67ec484
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
93 lines
2.4 KiB
TypeScript
93 lines
2.4 KiB
TypeScript
export const users = {
|
|
signup: [
|
|
{
|
|
name: "SignUp Flow User 1",
|
|
email: "signup1@formbricks.com",
|
|
password: "eN791hZ7wNr9IAscf@",
|
|
},
|
|
],
|
|
onboarding: [
|
|
{
|
|
name: "Onboarding User 1",
|
|
email: "onboarding1@formbricks.com",
|
|
password: "iHalLonErFGK$X901R0",
|
|
},
|
|
{
|
|
name: "Onboarding User 2",
|
|
email: "onboarding2@formbricks.com",
|
|
password: "231Xh7D&dM8u75EjIYV",
|
|
},
|
|
],
|
|
survey: [
|
|
{
|
|
name: "Survey User 1",
|
|
email: "survey1@formbricks.com",
|
|
password: "Y1I*EpURUSb32j5XijP",
|
|
},
|
|
],
|
|
};
|
|
|
|
export const teams = {
|
|
onboarding: [
|
|
{
|
|
role: "Founder",
|
|
useCase: "Increase conversion",
|
|
productName: "Formbricks E2E Test Suite",
|
|
},
|
|
],
|
|
};
|
|
|
|
export const surveys = {
|
|
createAndSubmit: {
|
|
welcomeCard: {
|
|
headline: "Welcome to My Testing Survey Welcome Card!",
|
|
description: "This is the description of my Welcome Card!",
|
|
},
|
|
openTextQuestion: {
|
|
question: "This is my Open Text Question",
|
|
description: "This is my Open Text Description",
|
|
placeholder: "This is my Placeholder",
|
|
},
|
|
singleSelectQuestion: {
|
|
question: "This is my Single Select Question",
|
|
description: "This is my Single Select Description",
|
|
options: ["Option 1", "Option 2"],
|
|
},
|
|
multiSelectQuestion: {
|
|
question: "This is my Multi Select Question",
|
|
description: "This is Multi Select Description",
|
|
options: ["Option 1", "Option 2", "Option 3"],
|
|
},
|
|
ratingQuestion: {
|
|
question: "This is my Rating Question",
|
|
description: "This is Rating Description",
|
|
lowLabel: "My Lower Label",
|
|
highLabel: "My Upper Label",
|
|
},
|
|
npsQuestion: {
|
|
question: "This is my NPS Question",
|
|
lowLabel: "My Lower Label",
|
|
highLabel: "My Upper Label",
|
|
},
|
|
ctaQuestion: {
|
|
question: "This is my CTA Question",
|
|
buttonLabel: "My Button Label",
|
|
},
|
|
consentQuestion: {
|
|
question: "This is my Consent Question",
|
|
checkboxLabel: "My Checkbox Label",
|
|
},
|
|
pictureSelectQuestion: {
|
|
question: "This is my Picture Select Question",
|
|
description: "This is Picture Select Description",
|
|
},
|
|
fileUploadQuestion: {
|
|
question: "This is my File Upload Question",
|
|
},
|
|
thankYouCard: {
|
|
headline: "This is my Thank You Card Headline!",
|
|
description: "This is my Thank you Card Description!",
|
|
},
|
|
},
|
|
};
|