From eb7060a82ba140f06551ad244aab50dec66c3cc4 Mon Sep 17 00:00:00 2001 From: suryabulusu Date: Sat, 30 Nov 2024 16:47:01 +0530 Subject: [PATCH] adds mock test' --- src/components/InstructionPage.vue | 1 + src/types.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/InstructionPage.vue b/src/components/InstructionPage.vue index 24cb070..7b331b2 100644 --- a/src/components/InstructionPage.vue +++ b/src/components/InstructionPage.vue @@ -249,6 +249,7 @@ export default defineComponent({ ["hiring_test", "Hiring Test"], ["evaluation_test", "Evaluation Test"], ["homework", "Homework"], + ["mock_test", "Mock Test"] ]); // to split the questionSetTitles from char "-" (eg. Section A) diff --git a/src/types.ts b/src/types.ts index 4c51d91..b8d0ee1 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2,7 +2,7 @@ type language = "en" | "hi"; export type quizType = "assessment" | "homework" | "omr-assessment"; -export type testFormat = "full_syllabus_test" | "major_test" | "part_test" | "chapter_test" | "hiring_test" | "evaluation_test" | "homework" | ""; +export type testFormat = "full_syllabus_test" | "major_test" | "part_test" | "chapter_test" | "hiring_test" | "evaluation_test" | "mock_test" | "homework" | ""; export type quizTitleType = string | null; export type textAreaValueType = string | number | null; export type isFirstSessionType = boolean | null;