Add a basic pipeline test

Will need to be more awake to write the rest of these tests 😸
This commit is contained in:
R Tyler Croy 2019-07-06 20:35:53 -07:00
parent 5bdd7b6c74
commit 9f6a9f792a
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
1 changed files with 11 additions and 0 deletions

View File

@ -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);
});
});