diff --git a/integration-tests/utf-bom-encoding.test.ts b/integration-tests/utf-bom-encoding.test.ts index 4429b70072..a870045453 100644 --- a/integration-tests/utf-bom-encoding.test.ts +++ b/integration-tests/utf-bom-encoding.test.ts @@ -9,9 +9,6 @@ import { writeFileSync, readFileSync } from 'node:fs'; import { join, resolve } from 'node:path'; import { TestRig } from './test-helper.js'; -// Windows skip (Option A: avoid infra scope) -const d = process.platform === 'win32' ? describe.skip : describe; - // BOM encoders const utf8BOM = (s: string) => Buffer.concat([Buffer.from([0xef, 0xbb, 0xbf]), Buffer.from(s, 'utf8')]); @@ -53,7 +50,7 @@ const utf32BE = (s: string) => { let rig: TestRig; let dir: string; -d('BOM end-to-end integration', () => { +describe('BOM end-to-end integraion', () => { beforeAll(async () => { rig = new TestRig(); await rig.setup('bom-integration');