chore(fe): uplift FE packages to latest version (#30357)

Signed-off-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
Đỗ Trọng Hải
2024-10-12 01:46:01 +07:00
committed by GitHub
parent 9c12b1c7da
commit 9a2b1a5cf7
31 changed files with 402 additions and 334 deletions

View File

@@ -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', {