diff options
author | 2021-02-19 12:07:50 +0300 | |
---|---|---|
committer | 2021-02-19 12:07:50 +0300 | |
commit | 569762a54ac4d3c464800a981acec5614cd29ef9 (patch) | |
tree | 08d7f3e21806a935f4916df737da09758b3c9b0e /src/tests/components | |
parent | Merge pull request #91 from python-discord/forms-submitting (diff) |
Adds Missing Fields To Test Models
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'src/tests/components')
-rw-r--r-- | src/tests/components/FormListing.test.tsx | 6 |
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", () => { |