mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-29 11:32:15 -05:00
make open-ct and run-ct public
This commit is contained in:
@@ -638,15 +638,15 @@ describe('cli', () => {
|
||||
expect(spawn.start.firstCall.args[0]).to.include('--componentTesting')
|
||||
})
|
||||
|
||||
it('does not display open-ct command in the help', () => {
|
||||
it('does display open-ct command in the help', () => {
|
||||
return execa('bin/cypress', ['help']).then((result) => {
|
||||
expect(result).to.not.include('open-ct')
|
||||
expect(result).to.include('open-ct')
|
||||
})
|
||||
})
|
||||
|
||||
it('does not display run-ct command in the help', () => {
|
||||
it('does display run-ct command in the help', () => {
|
||||
return execa('bin/cypress', ['help']).then((result) => {
|
||||
expect(result).to.not.include('run-ct')
|
||||
expect(result).to.include('run-ct')
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user