bp_wb/frontend/editor/hooks/useDragDrop.test.ts

14 lines
367 B
TypeScript

import { describe, it, expect } from '@jest/globals';
describe('useDragDrop hooks', () => {
it('should provide draggable component hook', () => {
// TODO: Implement test with proper React DnD test setup
expect(true).toBe(true);
});
it('should provide droppable canvas hook', () => {
// TODO: Implement test
expect(true).toBe(true);
});
});