()
| 28 | |
| 29 | describe('with multiple select', () => { |
| 30 | function mount() { |
| 31 | return render(` |
| 32 | <select id="fruits" data-testid="select" multiple> |
| 33 | <option value="">Select a fruit...</option> |
| 34 | <option value="ananas" selected>Ananas</option> |
| 35 | <option value="banana">Banana</option> |
| 36 | <option value="avocado" selected>Avocado</option> |
| 37 | </select> |
| 38 | `) |
| 39 | } |
| 40 | |
| 41 | it('matches only when all the multiple selected values are equal to all the expected values', () => { |
| 42 | const subject = mount() |
no test coverage detected