@@ -43,7 +43,7 @@ describe('mevn init', () => {
43
43
) ;
44
44
} ) ;
45
45
46
- it ( 'creates a new MEVN stack webapp based on the Nuxt.js starter template' , async ( ) => {
46
+ it . skip ( 'creates a new MEVN stack webapp based on the Nuxt.js starter template' , async ( ) => {
47
47
rmDirIfExists ( genPath ) ;
48
48
const { exitCode } = await runPromptWithAnswers (
49
49
[ 'init' , 'my-app' ] ,
@@ -109,7 +109,7 @@ describe('mevn init', () => {
109
109
expect ( stderr ) . toContain ( `It seems the current directory isn't empty.` ) ;
110
110
} ) ;
111
111
112
- it ( 'creates a new MEVN stack webapp based on the GraphQL starter template' , async ( ) => {
112
+ it . skip ( 'creates a new MEVN stack webapp based on the GraphQL starter template' , async ( ) => {
113
113
rmDirIfExists ( genPath ) ;
114
114
const { exitCode } = await runPromptWithAnswers (
115
115
[ 'init' , 'my-app' ] ,
@@ -134,7 +134,7 @@ describe('mevn init', () => {
134
134
expect ( fs . existsSync ( path . join ( serverPath , 'graphql' ) ) ) . toBeTruthy ( ) ;
135
135
} ) ;
136
136
137
- it ( 'creates a new MEVN stack webapp based on the PWA starter template' , async ( ) => {
137
+ it . skip ( 'creates a new MEVN stack webapp based on the PWA starter template' , async ( ) => {
138
138
rmDirIfExists ( genPath ) ;
139
139
const { exitCode } = await runPromptWithAnswers (
140
140
[ 'init' , 'my-app' ] ,
@@ -168,7 +168,7 @@ describe('mevn init', () => {
168
168
) . toBeTruthy ( ) ;
169
169
} ) ;
170
170
171
- it ( 'creates a new MEVN stack webapp based on the Default starter template in current directory' , async ( ) => {
171
+ it . skip ( 'creates a new MEVN stack webapp based on the Default starter template in current directory' , async ( ) => {
172
172
rmDirIfExists ( genPath ) ;
173
173
fs . mkdirSync ( genPath ) ;
174
174
0 commit comments