mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-05 22:19:46 -06:00
11 lines
331 B
JavaScript
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)
|
|
})
|
|
})
|