Skip to content

Commit c38c248

Browse files
author
Alex K
committed
test: add initial sanity test to pass CI
1 parent e3dd17f commit c38c248

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

test/sanity.test.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// test/sanity.test.js
2+
import { describe, it, expect } from 'vitest';
3+
4+
describe('CI Sanity Check', () => {
5+
it('should always pass', () => {
6+
expect(true).toBe(true);
7+
});
8+
});

test/vitest.config.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)