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