Skip to content

Commit 9da0120

Browse files
committed
Revert "chore: skip a test due to bug in rolldown"
This reverts commit 15a9fda.
1 parent 0c18347 commit 9da0120

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

playground/resolve/__tests__/resolve.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,7 @@ test('resolve.conditions', async () => {
183183
expect(await page.textContent('.custom-condition')).toMatch('[success]')
184184
})
185185

186-
// NOTE: skip for now due to https://github.com/rolldown/rolldown/issues/3364
187-
test.skip('resolve package that contains # in path', async () => {
186+
test('resolve package that contains # in path', async () => {
188187
expect(await page.textContent('.path-contains-sharp-symbol')).toMatch(
189188
'[success] true #',
190189
)

playground/resolve/index.html

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -397,11 +397,10 @@ <h2>utf8-bom-package</h2>
397397
import contains from 'es5-ext/string/#/contains'
398398
import { last } from '@vitejs/test-resolve-sharp-dir'
399399

400-
// NOTE: skip for now due to https://github.com/rolldown/rolldown/issues/3364
401-
// text(
402-
// '.path-contains-sharp-symbol',
403-
// `[success] ${contains.call('#', '#')} ${last.call('#')}`,
404-
// )
400+
text(
401+
'.path-contains-sharp-symbol',
402+
`[success] ${contains.call('#', '#')} ${last.call('#')}`,
403+
)
405404

406405
import nonNormalizedAbsolute from '@non-normalized'
407406
text('.non-normalized', nonNormalizedAbsolute)

0 commit comments

Comments
 (0)