8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
import { expect, test } from 'bun:test';
|
|
import { TestPrograms } from './programs';
|
|
import { peggyParse } from '@/parser';
|
|
|
|
test('Primitive Operations', async () => {
|
|
const ast = peggyParse(await TestPrograms.AddOneThree);
|
|
});
|