Test
material-uiのTextFieldをtesting-library/reactでテストしようとすると、HTMLElementを取り出すところで苦労したのでメモを残す。 TextFieldに付与したaria-labelはinputのラッパー要素に付く 次のTextFieldがどこかのコンポーネントにあるとする。 <TextField name="name" label="name" aria-label="name" variant="outlined" value="title" /> 実際に</textfield>…
RobolectricでLocaleを指定するには@Config(qualifiers)を使う テストで特定のLocaleで実行したいときってありますよね。Robolectric*1だと@Config(qualifiers)*2を使うことでテストのLocaleを指定できます。 @RunWith(RobolectricTestRunner::class) @Confi…