mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-11-03 09:22:01 +00:00
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
|
|
describe('sum test', () => {
|
|
it('adds 1 + 2 to equal 3', () => {
|
|
expect(1 + 2).toBe(3);
|
|
});
|
|
});
|