File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
playground/backend-integration/__tests__ Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ describe.runIf(isBuild)('build', () => {
5555 const scssAssetEntry = manifest [ 'nested/blue.scss' ]
5656 const imgAssetEntry = manifest [ '../images/logo.png' ]
5757 const dirFooAssetEntry = manifest [ '../../dir/foo.css' ]
58- // const iconEntrypointEntry = manifest['icon.png']
58+ const iconEntrypointEntry = manifest [ 'icon.png' ]
5959 expect ( htmlEntry . css . length ) . toEqual ( 2 )
6060 expect ( htmlEntry . assets . length ) . toEqual ( 1 )
6161 expect ( mainTsEntry . imports . length ) . toBeGreaterThanOrEqual ( 1 )
@@ -77,7 +77,7 @@ describe.runIf(isBuild)('build', () => {
7777 expect ( dirFooAssetEntry ) . not . toBeUndefined ( ) // '\\' should not be used even on windows
7878 // use the entry name
7979 expect ( dirFooAssetEntry . file ) . toMatch ( 'assets/bar-' )
80- // expect(iconEntrypointEntry?.file).not.toBeUndefined()
80+ expect ( iconEntrypointEntry ?. file ) . not . toBeUndefined ( )
8181 } )
8282
8383 test ( 'CSS imported from JS entry should have a non-nested chunk name' , ( ) => {
You can’t perform that action at this time.
0 commit comments