Skip to content

Commit

Permalink
test(cuttings): Make index test less useless
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidnioulz committed Sep 14, 2024
1 parent 167d7a0 commit 6c6d1d2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions packages/cuttings/src/__tests__/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
describe('@figmarine/cuttings', () => {
it.only('', () => {});
import * as index from '../index';

describe('@figmarine/cuttings - index', () => {
it('exports something', () => {
expect(index).toBeDefined();
expect(index.take).toBeDefined();
expect(index.digCutting).toBeDefined();
expect(index.plantCutting).toBeDefined();
});
});

0 comments on commit 6c6d1d2

Please sign in to comment.