@@ -17,7 +17,7 @@ describe('The Angularity build task should correctly build an existing project.'
1717 } ) ;
1818
1919 afterEach ( function ( ) {
20- helper . cleanTestTemp ( ) ;
20+ // helper.cleanTestTemp();
2121 } ) ;
2222
2323 beforeEach ( function ( ) {
@@ -29,15 +29,15 @@ describe('The Angularity build task should correctly build an existing project.'
2929 process . chdir ( buildFolder ) ;
3030 } ) ;
3131
32- it ( 'should successfully build the minimal-es5 project\'s js.' , function ( done ) {
32+ iit ( 'should successfully build the minimal-es5 project\'s js.' , function ( done ) {
3333 helper . runAngularity ( 'build' )
3434 . then ( function ( result ) {
3535 var expectedJSBundle = path . join ( expectedBuildFolder , 'app-build' , 'index.js' ) ;
3636 var builtJSBundle = path . join ( buildFolder , 'app-build' , 'index.js' ) ;
3737 expect ( builtJSBundle ) . diffFilePatch ( expectedJSBundle ) ;
3838
39- var expectedJSBundleSourceMap = path . join ( expectedBuildFolder , 'app-build' , 'index.js' ) ;
40- var builtJSBundleSourceMap = path . join ( buildFolder , 'app-build' , 'index.js' ) ;
39+ var expectedJSBundleSourceMap = path . join ( expectedBuildFolder , 'app-build' , 'index.js.map ' ) ;
40+ var builtJSBundleSourceMap = path . join ( buildFolder , 'app-build' , 'index.js.map ' ) ;
4141 expect ( builtJSBundleSourceMap ) . diffFilePatch ( expectedJSBundleSourceMap ) ;
4242
4343 done ( ) ;
0 commit comments