@@ -235,7 +235,7 @@ describe('Platform Service Tests', () => {
235235
236236 // Asserts that the files in app folder are process as platform specific
237237 assert . isTrue ( fs . exists ( path . join ( appDestFolderPath , "app" , "test1.js" ) ) . wait ( ) ) ;
238- assert . isTrue ( fs . exists ( path . join ( appDestFolderPath , "app" , "test1-js" ) ) . wait ( ) ) ;
238+ assert . isFalse ( fs . exists ( path . join ( appDestFolderPath , "app" , "test1-js" ) ) . wait ( ) ) ;
239239 assert . isFalse ( fs . exists ( path . join ( appDestFolderPath , "app" , "test2.js" ) ) . wait ( ) ) ;
240240 assert . isFalse ( fs . exists ( path . join ( appDestFolderPath , "app" , "test2-js" ) ) . wait ( ) ) ;
241241
@@ -286,7 +286,7 @@ describe('Platform Service Tests', () => {
286286
287287 // Asserts that the files in app folder are process as platform specific
288288 assert . isTrue ( fs . exists ( path . join ( appDestFolderPath , "app" , "test2.js" ) ) . wait ( ) ) ;
289- assert . isTrue ( fs . exists ( path . join ( appDestFolderPath , "app" , "test2-js" ) ) . wait ( ) ) ;
289+ assert . isFalse ( fs . exists ( path . join ( appDestFolderPath , "app" , "test2-js" ) ) . wait ( ) ) ;
290290 assert . isFalse ( fs . exists ( path . join ( appDestFolderPath , "app" , "test1.js" ) ) . wait ( ) ) ;
291291 assert . isFalse ( fs . exists ( path . join ( appDestFolderPath , "app" , "test1-js" ) ) . wait ( ) ) ;
292292
0 commit comments