File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
tests/renderer/components/__snapshots__ Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,11 @@ export const AddressBar = observer(
142142
143143 const isPerformingAction = activeGistAction !== GistActionState . none ;
144144 return (
145- < form className = { className } onSubmit = { this . handleSubmit } >
145+ < form
146+ className = { className }
147+ aria-label = { 'Enter Fiddle Gist URL' }
148+ onSubmit = { this . handleSubmit }
149+ >
146150 < fieldset disabled = { isPerformingAction } >
147151 < InputGroup
148152 key = "addressbar"
Original file line number Diff line number Diff line change @@ -205,6 +205,7 @@ export const ExecutionSettings = observer(
205205 { varsArray . map ( ( [ idx , envVar ] ) => {
206206 return (
207207 < InputGroup
208+ aria-label = { 'Set user-provided environment variables' }
208209 placeholder = 'NODE_OPTIONS="--no-warnings --max-old-space-size=2048"'
209210 value = { envVar }
210211 name = { idx }
@@ -240,6 +241,7 @@ export const ExecutionSettings = observer(
240241 { flagsArray . map ( ( [ idx , flag ] ) => {
241242 return (
242243 < InputGroup
244+ aria-label = { 'Set user-provided flags' }
243245 placeholder = "--js-flags=--expose-gc"
244246 value = { flag }
245247 name = { idx }
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ exports[`ExecutionSettings component renders 1`] = `
7373 </p >
7474 <br />
7575 <Blueprint3.InputGroup
76+ aria-label = " Set user-provided flags"
7677 key = " 0"
7778 name = " 0"
7879 onChange = { [Function ]}
@@ -115,6 +116,7 @@ exports[`ExecutionSettings component renders 1`] = `
115116 </p >
116117 <br />
117118 <Blueprint3.InputGroup
119+ aria-label = " Set user-provided environment variables"
118120 key = " 0"
119121 name = " 0"
120122 onChange = { [Function ]}
You can’t perform that action at this time.
0 commit comments