import { getDefaultTamaguiConfig } from '@tamagui/config-default'
import { createTamagui } from '@tamagui/core'
import { describe, expect, test } from 'vitest'
import { Button } from './Button'
const conf = createTamagui(getDefaultTamaguiConfig())
describe('Button', () => {
test(`123`, () => {
expect(true).toBeTruthy()
})
// type tests for native button props (issue #3914)
test('accepts native button html props', () => {
// these should type check without errors
const _submitBtn =
const _resetBtn =
const _buttonBtn =
const _formBtn = (
)
expect(true).toBeTruthy()
})
// test(`Adapts to a when given accessibilityRole="link"`, async () => {
// const { container } = render(
//
//
//
// )
// expect(container.firstChild).toMatchSnapshot()
// })
})