mirror of
https://github.com/apache/superset.git
synced 2026-04-20 08:34:37 +00:00
chore(fe): uplift FE packages to latest version (#30357)
Signed-off-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
@@ -616,7 +616,7 @@ test('CSV, form post', async () => {
|
||||
const inputElement = document.querySelector('input[type="file"]');
|
||||
|
||||
if (inputElement) {
|
||||
userEvent.upload(inputElement, file);
|
||||
userEvent.upload(inputElement as HTMLElement, file);
|
||||
}
|
||||
|
||||
const selectDatabase = screen.getByRole('combobox', {
|
||||
@@ -673,7 +673,7 @@ test('Excel, form post', async () => {
|
||||
const inputElement = document.querySelector('input[type="file"]');
|
||||
|
||||
if (inputElement) {
|
||||
userEvent.upload(inputElement, file);
|
||||
userEvent.upload(inputElement as HTMLElement, file);
|
||||
}
|
||||
|
||||
const selectDatabase = screen.getByRole('combobox', {
|
||||
@@ -734,7 +734,7 @@ test('Columnar, form post', async () => {
|
||||
const inputElement = document.querySelector('input[type="file"]');
|
||||
|
||||
if (inputElement) {
|
||||
userEvent.upload(inputElement, file);
|
||||
userEvent.upload(inputElement as HTMLElement, file);
|
||||
}
|
||||
|
||||
const selectDatabase = screen.getByRole('combobox', {
|
||||
|
||||
Reference in New Issue
Block a user