fix(lint): pnpm format lint warning (#7080)

This commit is contained in:
ppxb
2026-01-10 14:06:03 +08:00
committed by GitHub
parent 24d20ca9ee
commit 51bca25345
9 changed files with 22 additions and 24 deletions

View File

@@ -29,9 +29,8 @@ describe('useSortable', () => {
await initializeSortable();
// Import sortablejs to access the mocked create function
const Sortable = await import(
'sortablejs/modular/sortable.complete.esm.js'
);
const Sortable =
await import('sortablejs/modular/sortable.complete.esm.js');
// Verify that Sortable.create was called with the correct parameters
expect(Sortable.default.create).toHaveBeenCalledTimes(1);