@@ -42,7 +42,7 @@ describe('exec open', function () {
4242 return open . start ( { env : 'host=http://localhost:1337,name=brian' } )
4343 . then ( ( ) => {
4444 expect ( spawn . start ) . to . be . calledWith (
45- [ '--env' , 'host=http://localhost:1337,name=brian' ]
45+ [ '--env' , 'host=http://localhost:1337,name=brian' ] ,
4646 )
4747 } )
4848 } )
@@ -51,7 +51,7 @@ describe('exec open', function () {
5151 return open . start ( { config : 'watchForFileChanges=false,baseUrl=localhost' } )
5252 . then ( ( ) => {
5353 expect ( spawn . start ) . to . be . calledWith (
54- [ '--config' , 'watchForFileChanges=false,baseUrl=localhost' ]
54+ [ '--config' , 'watchForFileChanges=false,baseUrl=localhost' ] ,
5555 )
5656 } )
5757 } )
@@ -60,7 +60,7 @@ describe('exec open', function () {
6060 return open . start ( { configFile : false } )
6161 . then ( ( ) => {
6262 expect ( spawn . start ) . to . be . calledWith (
63- [ '--config-file' , false ]
63+ [ '--config-file' , false ] ,
6464 )
6565 } )
6666 } )
@@ -69,7 +69,7 @@ describe('exec open', function () {
6969 return open . start ( { configFile : 'special-cypress.json' } )
7070 . then ( ( ) => {
7171 expect ( spawn . start ) . to . be . calledWith (
72- [ '--config-file' , 'special-cypress.json' ]
72+ [ '--config-file' , 'special-cypress.json' ] ,
7373 )
7474 } )
7575 } )
@@ -80,7 +80,7 @@ describe('exec open', function () {
8080 return open . start ( )
8181 . then ( ( ) => {
8282 expect ( spawn . start ) . to . be . calledWith (
83- [ '--project' , process . cwd ( ) ]
83+ [ '--project' , process . cwd ( ) ] ,
8484 )
8585 } )
8686 } )
@@ -91,7 +91,7 @@ describe('exec open', function () {
9191 return open . start ( { global : true } )
9292 . then ( ( ) => {
9393 expect ( spawn . start ) . not . to . be . calledWith (
94- [ '--project' , process . cwd ( ) ]
94+ [ '--project' , process . cwd ( ) ] ,
9595 )
9696 } )
9797 } )
@@ -102,7 +102,7 @@ describe('exec open', function () {
102102 return open . start ( { project : '/path/to/project' } )
103103 . then ( ( ) => {
104104 expect ( spawn . start ) . to . be . calledWith (
105- [ '--project' , '/path/to/project' ]
105+ [ '--project' , '/path/to/project' ] ,
106106 )
107107 } )
108108 } )
@@ -111,7 +111,7 @@ describe('exec open', function () {
111111 return open . start ( { project : '/path/to/project' } )
112112 . then ( ( ) => {
113113 expect ( spawn . start ) . to . be . calledWith (
114- [ '--project' , '/path/to/project' ]
114+ [ '--project' , '/path/to/project' ] ,
115115 )
116116 } )
117117 } )
0 commit comments