From 978fbcf95ee53c6c2f5e60b5cdfaf0f9043f9224 Mon Sep 17 00:00:00 2001 From: Sehoon Shon Date: Fri, 24 Oct 2025 11:46:52 -0400 Subject: [PATCH] run bom test on windows (#11828) --- integration-tests/utf-bom-encoding.test.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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');