|
|
@@ -0,0 +1,13 @@ |
|
|
|
import { describe, it, expect } from 'vitest'; |
|
|
|
import * as WebFormattedReact from '.'; |
|
|
|
|
|
|
|
describe('web-formatted-react', () => { |
|
|
|
it.each([ |
|
|
|
'EmailInput', |
|
|
|
'PatternTextInput', |
|
|
|
'PhoneNumberInput', |
|
|
|
'UrlInput', |
|
|
|
])('exports %s', (namedExport) => { |
|
|
|
expect(WebFormattedReact).toHaveProperty(namedExport); |
|
|
|
}); |
|
|
|
}); |