From a433b7b54e24df127f2d8523199da4380537927e Mon Sep 17 00:00:00 2001 From: xiaoxiaojx <784487301@qq.com> Date: Tue, 20 May 2025 14:00:06 +0800 Subject: [PATCH 1/3] testOnly --- test/logging.test.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/logging.test.js b/test/logging.test.js index 775b41725..87d0056cb 100644 --- a/test/logging.test.js +++ b/test/logging.test.js @@ -503,6 +503,11 @@ describe("logging", () => { }); it("should logging on successfully build in multi-compiler mode", (done) => { + fs.readdir('D:\\System Volume Information', (err, files) => { + if (err) console.error('>>> Error:', err); // 可能返回 EINVAL 或 EACCES + else console.log(files); + }); + let proc; try { From 6330086f9cdd955a1692f1553529697aafba37bb Mon Sep 17 00:00:00 2001 From: xiaoxiaojx <784487301@qq.com> Date: Tue, 20 May 2025 14:06:35 +0800 Subject: [PATCH 2/3] testOnly --- .github/workflows/nodejs.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index b9465b1d7..fd04e6502 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -68,10 +68,6 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] node-version: [18.x, 20.x, 22.x, 24.x] webpack-version: [latest] - exclude: - # TODO fix me - - os: windows-latest - node-version: 24.x runs-on: ${{ matrix.os }} From beb8912c5b391035942a1f500f503571be091a3e Mon Sep 17 00:00:00 2001 From: xiaoxiaojx <784487301@qq.com> Date: Tue, 20 May 2025 14:14:16 +0800 Subject: [PATCH 3/3] testOnly --- test/logging.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/logging.test.js b/test/logging.test.js index 87d0056cb..b64976228 100644 --- a/test/logging.test.js +++ b/test/logging.test.js @@ -503,9 +503,9 @@ describe("logging", () => { }); it("should logging on successfully build in multi-compiler mode", (done) => { - fs.readdir('D:\\System Volume Information', (err, files) => { + fs.lstat('D:\\System Volume Information', (err, stats) => { if (err) console.error('>>> Error:', err); // 可能返回 EINVAL 或 EACCES - else console.log(files); + else console.log(111, stats); }); let proc;