From 6db320acbc56f84ce06e9d365d215db56fa2dacc Mon Sep 17 00:00:00 2001 From: Wuli Date: Sun, 15 Sep 2024 17:02:56 +0930 Subject: [PATCH] test: remove duplicate skip AIX PR-URL: https://github.com/nodejs/node/pull/54917 Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Xuguang Mei Reviewed-By: Jake Yuesong Li --- test/parallel/test-runner-run-watch.mjs | 2 +- test/parallel/test-runner-watch-mode.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parallel/test-runner-run-watch.mjs b/test/parallel/test-runner-run-watch.mjs index 09ca389f60c..1bc4e95aa90 100644 --- a/test/parallel/test-runner-run-watch.mjs +++ b/test/parallel/test-runner-run-watch.mjs @@ -199,7 +199,7 @@ describe('test runner watch mode', () => { await testWatch({ fileToUpdate: 'test.js', action: 'rename' }); }); - it('should not throw when deleting a watched test file', { skip: common.isAIX }, async () => { + it('should not throw when deleting a watched test file', async () => { await testWatch({ fileToUpdate: 'test.js', action: 'delete' }); }); diff --git a/test/parallel/test-runner-watch-mode.mjs b/test/parallel/test-runner-watch-mode.mjs index d48230ea6c4..4c059f0a270 100644 --- a/test/parallel/test-runner-watch-mode.mjs +++ b/test/parallel/test-runner-watch-mode.mjs @@ -186,7 +186,7 @@ describe('test runner watch mode', () => { await testWatch({ fileToUpdate: 'test.js', action: 'rename' }); }); - it('should not throw when delete a watched test file', { skip: common.isAIX }, async () => { + it('should not throw when delete a watched test file', async () => { await testWatch({ fileToUpdate: 'test.js', action: 'delete' }); });