()
| 102 | }; |
| 103 | |
| 104 | const postCloudCodeData = async () => { |
| 105 | try { |
| 106 | const result = await Parse.Cloud.run('hello'); |
| 107 | |
| 108 | closeStep('#step-3'); |
| 109 | fillStepOutput('#step-3-output', JSON.stringify(result)); |
| 110 | fillBtn('#step-3-btn', 'Tested'); |
| 111 | showWorkingMessage(); |
| 112 | } catch (error) { |
| 113 | fillStepError('#step-3-error', `There was a failure: ${error.message}`); |
| 114 | } |
| 115 | }; |
| 116 | |
| 117 | /** |
| 118 | * Store |
no test coverage detected