@@ -40,7 +40,7 @@ describe('Form Builder "Form" Test', () => {
40
40
}
41
41
} ) ;
42
42
43
- test ( "should create a form and return it in the list of latest forms" , async ( ) => {
43
+ it ( "should create a form and return it in the list of latest forms" , async ( ) => {
44
44
const [ create ] = await createForm ( { data : { name : "contact-us" } } ) ;
45
45
const { id } = create . data . formBuilder . createForm . data ;
46
46
@@ -70,7 +70,7 @@ describe('Form Builder "Form" Test', () => {
70
70
expect ( data [ 0 ] . id ) . toEqual ( id ) ;
71
71
} ) ;
72
72
73
- test ( "should update form and return new data from storage" , async ( ) => {
73
+ it ( "should update form and return new data from storage" , async ( ) => {
74
74
const [ create ] = await createForm ( { data : { name : "contact-us" } } ) ;
75
75
const { id } = create . data . formBuilder . createForm . data ;
76
76
@@ -219,7 +219,7 @@ describe('Form Builder "Form" Test', () => {
219
219
expect ( revisions [ 0 ] . version ) . toEqual ( 2 ) ;
220
220
} ) ;
221
221
222
- test ( "should delete a form and all of its revisions" , async ( ) => {
222
+ it ( "should delete a form and all of its revisions" , async ( ) => {
223
223
const [ create ] = await createForm ( { data : { name : "contact-us" } } ) ;
224
224
const { id } = create . data . formBuilder . createForm . data ;
225
225
@@ -246,7 +246,7 @@ describe('Form Builder "Form" Test', () => {
246
246
expect ( list . data . formBuilder . listForms . data . length ) . toBe ( 0 ) ;
247
247
} ) ;
248
248
249
- test ( "should publish, add views and unpublish" , async ( ) => {
249
+ it ( "should publish, add views and unpublish" , async ( ) => {
250
250
const [ create ] = await createForm ( { data : { name : "contact-us" } } ) ;
251
251
const { id } = create . data . formBuilder . createForm . data ;
252
252
@@ -306,7 +306,7 @@ describe('Form Builder "Form" Test', () => {
306
306
expect ( latestPublished3 . data . formBuilder . getPublishedForm . data . id ) . toEqual ( id ) ;
307
307
} ) ;
308
308
309
- test ( "should create, list and export submissions to file" , async ( ) => {
309
+ it ( "should create, list and export submissions to file" , async ( ) => {
310
310
const [ create ] = await createForm ( { data : { name : "contact-us" } } ) ;
311
311
const { id } = create . data . formBuilder . createForm . data ;
312
312
0 commit comments