test exports (#1139)

* test exports

* fmt

* tidy
This commit is contained in:
Kurt Hutten
2023-11-29 11:20:23 +11:00
committed by GitHub
parent 9f27f3c1ce
commit 7c11b7b739
10 changed files with 3303 additions and 2 deletions

View File

@ -133,6 +133,7 @@ export const ExportButton = ({ children, className }: ExportButtonProps) => {
<select
id="type"
name="type"
data-testid="export-type"
onChange={(e) => {
setType(e.target.value as OutputTypeKey)
if (e.target.value === 'gltf') {
@ -162,6 +163,7 @@ export const ExportButton = ({ children, className }: ExportButtonProps) => {
<select
id="storage"
name="storage"
data-testid="export-storage"
onChange={(e) => {
setStorage(e.target.value as StorageUnion)
formik.handleChange(e)