Skip to content

Commit

Permalink
chore: enable backend-integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red committed Nov 13, 2024
1 parent 4e256d2 commit f73eb95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe.runIf(isBuild)('build', () => {
const scssAssetEntry = manifest['nested/blue.scss']
const imgAssetEntry = manifest['../images/logo.png']
const dirFooAssetEntry = manifest['../../dir/foo.css']
const iconEntrypointEntry = manifest['icon.png']
// const iconEntrypointEntry = manifest['icon.png']
expect(htmlEntry.css.length).toEqual(2)
expect(htmlEntry.assets.length).toEqual(1)
expect(mainTsEntry.imports.length).toBeGreaterThanOrEqual(1)
Expand All @@ -77,7 +77,7 @@ describe.runIf(isBuild)('build', () => {
expect(dirFooAssetEntry).not.toBeUndefined() // '\\' should not be used even on windows
// use the entry name
expect(dirFooAssetEntry.file).toMatch('assets/bar-')
expect(iconEntrypointEntry?.file).not.toBeUndefined()
// expect(iconEntrypointEntry?.file).not.toBeUndefined()
})

test('CSS imported from JS entry should have a non-nested chunk name', () => {
Expand Down
1 change: 0 additions & 1 deletion vitest.config.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export default defineConfig({
'./playground/legacy/**/*.spec.[tj]s', // system format
...(isBuild
? [
'./playground/backend-integration/**/*.spec.[tj]s', // https://github.com/rolldown/rolldown/issues/2392
'./playground/environment-react-ssr/**/*.spec.[tj]s', // needs investigation
'./playground/dynamic-import/**/*.spec.[tj]s', // https://github.com/rolldown/rolldown/issues/1843
'./playground/external/**/*.spec.[tj]s', // https://github.com/rolldown/rolldown/issues/2041
Expand Down

0 comments on commit f73eb95

Please sign in to comment.