aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/components
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2021-02-20 03:50:58 +0300
committerGravatar Hassan Abouelela <[email protected]>2021-02-20 03:53:45 +0300
commit0278c8f567bfc50fcb65aaf6afe7cd82c5031023 (patch)
treea20d335623dc8b9e9038de1d5dc03e481039ecd8 /src/tests/components
parentRemoves Path From Auth (diff)
parentAdds Missing Fields To Test Models (diff)
Merge branch 'main' into discord-oauth
Signed-off-by: Hassan Abouelela <[email protected]> # Conflicts: # package.json # src/commonStyles.tsx # src/pages/FormPage.tsx
Diffstat (limited to 'src/tests/components')
-rw-r--r--src/tests/components/FormListing.test.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tests/components/FormListing.test.tsx b/src/tests/components/FormListing.test.tsx
index f269dbf..2116e48 100644
--- a/src/tests/components/FormListing.test.tsx
+++ b/src/tests/components/FormListing.test.tsx
@@ -21,7 +21,8 @@ const openFormListing: Form = {
required: false
}
],
- webhook: null
+ webhook: null,
+ submitted_text: null
};
const closedFormListing: Form = {
@@ -38,7 +39,8 @@ const closedFormListing: Form = {
required: false
}
],
- webhook: null
+ webhook: null,
+ submitted_text: null
};
test("renders form listing with specified title", () => {