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