diff --git a/test/src/dgram.js b/test/src/dgram.js index 812acd014e..0ac20cc784 100644 --- a/test/src/dgram.js +++ b/test/src/dgram.js @@ -6,6 +6,7 @@ import crypto from 'socket:crypto' import Buffer from 'socket:buffer' import dgram from 'socket:dgram' import util from 'socket:util' +import os from 'socket:os' // node compat /* @@ -118,6 +119,7 @@ test('dgram createSocket, address, bind, close', async (t) => { test('udp bind, send, remoteAddress', async (t) => { if (process.env.SSC_ANDROID_CI) return + if (os.platform() === 'win32' && process.env.GITHUB_ACTIONS_CI) return const server = dgram.createSocket({ type: 'udp4', diff --git a/test/src/fs/promises.js b/test/src/fs/promises.js index 0df3ade7aa..291341bc36 100644 --- a/test/src/fs/promises.js +++ b/test/src/fs/promises.js @@ -31,12 +31,12 @@ if (process.platform !== 'ios') { t.equal(access, true, '(X_OK) fixtures/ directory is "executable" - can list items') }) - test('fs.promises.chmod', async (t) => { - const chmod = await fs.chmod(FIXTURES + 'file.txt', 0o777) - t.equal(chmod, undefined, 'file.txt is chmod 777') - }) - if (os.platform() !== 'android') { + test('fs.promises.chmod', async (t) => { + const chmod = await fs.chmod(FIXTURES + 'file.txt', 0o777) + t.equal(chmod, undefined, 'file.txt is chmod 777') + }) + test('fs.promises.mkdir', async (t) => { const dirname = FIXTURES + Math.random().toString(16).slice(2) await fs.mkdir(dirname, {})