7 lines
143 B
TypeScript
7 lines
143 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
|
|
describe('heatmap', () => {
|
|
it('placeholder', () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|