Add snapshot testing

This commit is contained in:
2023-11-21 14:48:09 +07:00
parent 04ef95754c
commit 9ff60a7770
17 changed files with 944 additions and 0 deletions
@@ -0,0 +1,21 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Select testing snapshot render 1`] = `
<select
aria-label="Sort"
className="sc-bdnyFh dqXTRP"
onChange={[Function]}
value="Temp value"
>
<option
value="Value 1"
>
Option 1
</option>
<option
value="Value 2"
>
Option 2
</option>
</select>
`;