Skip to content

Commit 13cc840

Browse files
committed
chore: reduce diff
1 parent 82737df commit 13cc840

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playground/backend-integration/__tests__/backend-integration.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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', () => {

0 commit comments

Comments
 (0)