Skip to content

Commit

Permalink
Merge pull request #21 from formsible/feat/typing
Browse files Browse the repository at this point in the history
add test file
  • Loading branch information
SiamNgu authored Oct 27, 2024
2 parents bae03ef + aaa2752 commit b459cd7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/example.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { describe, it, expect } from 'vitest';

describe('Simple Test Suite', () => {
it('should add two numbers correctly', () => {
const sum = 1 + 2;
expect(sum).toBe(3);
});
});

0 comments on commit b459cd7

Please sign in to comment.