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