15 lines
395 B
TypeScript
15 lines
395 B
TypeScript
import { describe, it, expect } from '@jest/globals';
|
|
import { render, screen } from '@testing-library/react';
|
|
|
|
describe('Canvas Component', () => {
|
|
it('should render canvas area', () => {
|
|
// TODO: Implement test when Canvas is created
|
|
expect(true).toBe(true);
|
|
});
|
|
|
|
it('should accept dropped components', () => {
|
|
// TODO: Implement test
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|
|
|