test: remove duplicate skip AIX

PR-URL: https://github.com/nodejs/node/pull/54917
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
This commit is contained in:
Wuli 2024-09-15 17:02:56 +09:30 committed by GitHub
parent a65105ec28
commit 6db320acbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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' });
});

View File

@ -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' });
});