@@ -10,7 +10,6 @@ const config = require(`../../lib/config`)
1010const scaffold = require ( `../../lib/scaffold` )
1111const { ServerE2E } = require ( `../../lib/server-e2e` )
1212const { ProjectBase } = require ( `../../lib/project-base` )
13- const ProjectUtils = require ( `../../lib/project_utils` )
1413const { Automation } = require ( `../../lib/automation` )
1514const savedState = require ( `../../lib/saved_state` )
1615const plugins = require ( `../../lib/plugins` )
@@ -255,7 +254,6 @@ This option will not have an effect in Some-other-name. Tests that rely on web s
255254 context ( '#open' , ( ) => {
256255 beforeEach ( function ( ) {
257256 sinon . stub ( this . project , 'startWebsockets' )
258- this . checkSupportFileStub = sinon . stub ( ProjectUtils , 'checkSupportFile' ) . resolves ( )
259257 sinon . stub ( this . project , 'scaffold' ) . resolves ( )
260258 sinon . stub ( this . project , 'getConfig' ) . returns ( this . config )
261259 sinon . stub ( ServerE2E . prototype , 'open' ) . resolves ( [ ] )
@@ -295,15 +293,6 @@ This option will not have an effect in Some-other-name. Tests that rely on web s
295293 } )
296294 } )
297295
298- it ( 'calls checkSupportFile with server config when scaffolding is finished' , function ( ) {
299- return this . project . open ( ) . then ( ( ) => {
300- expect ( this . checkSupportFileStub ) . to . be . calledWith ( {
301- configFile : 'cypress.config.js' ,
302- supportFile : false ,
303- } )
304- } )
305- } )
306-
307296 it ( 'initializes the plugins' , function ( ) {
308297 return this . project . open ( ) . then ( ( ) => {
309298 expect ( plugins . init ) . to . be . called
0 commit comments