diff --git a/grammar/__tests__/pipeline.ts b/grammar/__tests__/pipeline.ts new file mode 100644 index 0000000..7a09933 --- /dev/null +++ b/grammar/__tests__/pipeline.ts @@ -0,0 +1,11 @@ +/* + * This test file will verify the parsing behavior of the pipeline block + */ + +import { MIN_PIPELINE, parse } from '../utils'; + +describe('pipeline {}', () => { + it('should pass with the minimum viable pipeline', () => { + expect(parse(MIN_PIPELINE)).toHaveLength(0); + }); +});