@@ -15,7 +15,7 @@ import {
1515} from '../setup' ;
1616
1717describeBuilder ( execute , UNIT_TEST_BUILDER_INFO , ( harness ) => {
18- xdescribe ( 'Option: "codeCoverageExclude"' , ( ) => {
18+ describe ( 'Option: "codeCoverageExclude"' , ( ) => {
1919 beforeEach ( async ( ) => {
2020 setupApplicationTarget ( harness ) ;
2121 await harness . writeFiles ( {
@@ -31,8 +31,8 @@ describeBuilder(execute, UNIT_TEST_BUILDER_INFO, (harness) => {
3131
3232 const { result } = await harness . executeOnce ( ) ;
3333 expect ( result ?. success ) . toBeTrue ( ) ;
34- const summary = harness . readFile ( 'coverage/coverage-summary .json' ) ;
35- expect ( summary ) . toContain ( '" src/app/error.ts"' ) ;
34+ const summary = harness . readFile ( 'coverage/coverage-final .json' ) ;
35+ expect ( summary ) . toContain ( 'src/app/error.ts"' ) ;
3636 } ) ;
3737
3838 it ( 'should exclude files from coverage that match the glob pattern' , async ( ) => {
@@ -44,8 +44,8 @@ describeBuilder(execute, UNIT_TEST_BUILDER_INFO, (harness) => {
4444
4545 const { result } = await harness . executeOnce ( ) ;
4646 expect ( result ?. success ) . toBeTrue ( ) ;
47- const summary = harness . readFile ( 'coverage/coverage-summary .json' ) ;
48- expect ( summary ) . not . toContain ( '" src/app/error.ts"' ) ;
47+ const summary = harness . readFile ( 'coverage/coverage-final .json' ) ;
48+ expect ( summary ) . not . toContain ( 'src/app/error.ts"' ) ;
4949 } ) ;
5050 } ) ;
5151} ) ;
0 commit comments