Skip to content

Commit

Permalink
add test file
Browse files Browse the repository at this point in the history
  • Loading branch information
SiamNgu committed Oct 27, 2024
1 parent a52ad1a commit aaa2752
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 aaa2752

Please sign in to comment.