Files
community-rule/tests/unit/simple.test.js
T
2025-08-28 21:17:27 -06:00

8 lines
149 B
JavaScript

import { describe, test, expect } from 'vitest';
describe('Simple Test', () => {
test('should work', () => {
expect(1 + 1).toBe(2);
});
});