Skip to content

Commit 4250dd8

Browse files
committed
test: start dl tests
1 parent 1384884 commit 4250dd8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { useInstrumentVisualization } from '../useInstrumentVisualization';
2+
import { describe, expect, it } from 'vitest';
3+
4+
describe('dl', () => {
5+
describe('CSV', () => {
6+
it('Should download', () => {
7+
const { dl } = useInstrumentVisualization({
8+
params: { subjectId: 'testId' }
9+
});
10+
dl('CSV');
11+
});
12+
});
13+
});

0 commit comments

Comments
 (0)