make open-ct and run-ct public

This commit is contained in:
Lachlan Miller
2021-03-30 16:39:49 +10:00
parent 3d1eda85c3
commit 906b48bc69
3 changed files with 40 additions and 30 deletions
+4 -4
View File
@@ -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')
})
})
})