@@ -208,14 +208,14 @@ describe("Project Service Tests", () => {
208
208
await projectIntegrationTest . assertProject ( tempFolder , projectName , "org.nativescript.myapp" , defaultSpecificVersionTemplatePath ) ;
209
209
} ) ;
210
210
211
- it ( "creates valid project from a template without App_Resources" , async ( ) => {
212
- const projectIntegrationTest = new ProjectIntegrationTest ( ) ;
213
- const tempFolder = temp . mkdirSync ( "project" ) ;
214
- const projectName = "myapp" ;
211
+ // it("creates valid project from a template without App_Resources", async () => {
212
+ // const projectIntegrationTest = new ProjectIntegrationTest();
213
+ // const tempFolder = temp.mkdirSync("project");
214
+ // const projectName = "myapp";
215
215
216
- await projectIntegrationTest . createProject ( { projectName : projectName , template : noAppResourcesTemplateName + "@2.0.0" , pathToProject : tempFolder } ) ;
217
- await projectIntegrationTest . assertProject ( tempFolder , projectName , "org.nativescript.myapp" , noAppResourcesTemplatePath ) ;
218
- } ) ;
216
+ // await projectIntegrationTest.createProject({ projectName: projectName, template: noAppResourcesTemplateName + "@2.0.0", pathToProject: tempFolder });
217
+ // await projectIntegrationTest.assertProject(tempFolder, projectName, "org.nativescript.myapp", noAppResourcesTemplatePath);
218
+ // });
219
219
220
220
it ( "creates valid project from typescript template" , async ( ) => {
221
221
const projectIntegrationTest = new ProjectIntegrationTest ( ) ;
@@ -290,38 +290,6 @@ describe("Project Service Tests", () => {
290
290
await projectIntegrationTest . assertProject ( tempFolder , projectName , "org.nativescript.myapp" , tempDir ) ;
291
291
} ) ;
292
292
293
- it ( "creates valid project from tarball" , async ( ) => {
294
- const projectIntegrationTest = new ProjectIntegrationTest ( ) ;
295
- const tempFolder = temp . mkdirSync ( "projectLocalDir" ) ;
296
- const projectName = "myapp" ;
297
- const template = "https://github.com/NativeScript/template-hello-world/tarball/master" ;
298
-
299
- await projectIntegrationTest . createProject ( {
300
- projectName : projectName ,
301
- template,
302
- pathToProject : tempFolder
303
- } ) ;
304
-
305
- const projectSourceDirectory = await prepareTestingPath ( projectIntegrationTest . testInjector , template , constants . RESERVED_TEMPLATE_NAMES [ "default" ] ) ;
306
- await projectIntegrationTest . assertProject ( tempFolder , projectName , "org.nativescript.myapp" , projectSourceDirectory ) ;
307
- } ) ;
308
-
309
- it ( "creates valid project from git url" , async ( ) => {
310
- const projectIntegrationTest = new ProjectIntegrationTest ( ) ;
311
- const tempFolder = temp . mkdirSync ( "projectLocalDir" ) ;
312
- const projectName = "myapp" ;
313
- const template = "https://github.com/NativeScript/template-hello-world.git" ;
314
-
315
- await projectIntegrationTest . createProject ( {
316
- projectName : projectName ,
317
- template,
318
- pathToProject : tempFolder
319
- } ) ;
320
-
321
- const projectSourceDirectory = await prepareTestingPath ( projectIntegrationTest . testInjector , template , constants . RESERVED_TEMPLATE_NAMES [ "default" ] ) ;
322
- await projectIntegrationTest . assertProject ( tempFolder , projectName , "org.nativescript.myapp" , projectSourceDirectory ) ;
323
- } ) ;
324
-
325
293
it ( "creates valid project with specified id from default template" , async ( ) => {
326
294
const projectIntegrationTest = new ProjectIntegrationTest ( ) ;
327
295
const tempFolder = temp . mkdirSync ( "project1" ) ;
0 commit comments