Files
cypress/scripts/unit/prepare-release-artifacts-spec.js
2022-03-04 22:22:39 +00:00

11 lines
331 B
JavaScript

const shelljs = require('shelljs')
const snapshot = require('snap-shot-it')
describe('prepare-release-artifacts', () => {
it('runs expected commands', () => {
const stdout = shelljs.exec('yarn prepare-release-artifacts --dry-run --sha 57d0a85108fad6f77b39db88b8a7d8a3bfdb51a2 --version 1.2.3')
snapshot(stdout)
})
})