Fix E2E tests

This commit is contained in:
Aarni Halinen
2021-09-01 22:30:18 +03:00
parent c2a338417a
commit d898d01f8a
2 changed files with 31 additions and 18 deletions
+7 -7
View File
@@ -111,23 +111,23 @@ export const generateTestForm = async (jwt: string) => (
end_time: tomorrow,
email_content: "E2E Test",
questions: [{
id: "XS_Ox5Rry", name: "Nimi", type: "name", options: [], required: true,
id: "Kv0IRYUWE", type: "name", options: { enum: [], enumNames_en: [], enumNames_fi: [] }, required: true, title_en: "Name", title_fi: "Nimi",
}, {
id: "Ve02XSEEx", name: "S-Posti", type: "email", options: [], required: true,
id: "_9o78DbdZ", type: "email", options: { enum: [], enumNames_en: [], enumNames_fi: [] }, required: true, title_en: "Email", title_fi: "S-Posti",
}, {
id: "luMqnz5y9", name: "Olen", type: "radiobutton", options: ["Nuori", "Vanha", "Testaaja"],
id: "-Zk6tCy7U", type: "radiobutton", options: { enum: ["Nuori", "Vanha", "Testaaja"], enumNames_en: ["Yung", "Old", "Tester"], enumNames_fi: ["Nuori", "Vanha", "Testaaja"] }, title_en: "I am", title_fi: "Olen",
}],
id: 14,
isOpen: true,
schema: {
type: "object",
required: ["XS_Ox5Rry", "Ve02XSEEx"],
required: ["Kv0IRYUWE", "_9o78DbdZ"],
properties: {
XS_Ox5Rry: { type: "string", title: "Nimi" },
Ve02XSEEx: {
Kv0IRYUWE: { type: "string", title: "Nimi" },
_9o78DbdZ: {
type: ["string"], title: "S-Posti", format: "email", pattern: "^[a-zA-Z0-9.!#$%&*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$", default: null,
},
luMqnz5y9: {
"-Zk6tCy7U": {
type: "string", title: "Olen", pattern: "^Nuori$|^Vanha$|^Testaaja$", enum: ["Nuori", "Vanha", "Testaaja"],
},
},