@jameslnewell/buildkite-pipelines
Version:
Generate Buildkite pipelines from code.
20 lines (19 loc) • 517 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
const _stringify = require("./stringify");
describe('stringify()', ()=>{
test('outputs a yaml string', async ()=>{
const result = await (0, _stringify.stringify)({
steps: [
{
label: 'lint',
command: 'yarn run lint'
}
]
});
expect(result).toMatchSnapshot();
});
});
//# sourceMappingURL=stringify.test.js.map