diff --git a/test/scripts/test-desktop.js b/test/scripts/test-desktop.js index 4a53003539..b5b49a6547 100644 --- a/test/scripts/test-desktop.js +++ b/test/scripts/test-desktop.js @@ -25,7 +25,7 @@ cp(path.join(root, 'fixtures'), path.join(TMPDIR, 'ssc-socket-test-fixtures'), { }) try { - exec(`ssc build -r --test=./index.js ${!DEBUG ? '-o --headless' : ''}`, { + exec(`ssc build -r --test=./index.js ${!DEBUG ? '-o --headless --prod' : ''}`, { stdio: 'inherit', env: { SOCKET_HOME_API, diff --git a/test/src/fs/promises.js b/test/src/fs/promises.js index ce164db003..5a362e9aa2 100644 --- a/test/src/fs/promises.js +++ b/test/src/fs/promises.js @@ -37,14 +37,14 @@ if (process.platform !== 'ios') { t.equal(chmod, undefined, 'file.txt is chmod 777') }) - test.only('fs.promises.mkdir', async (t) => { + test('fs.promises.mkdir', async (t) => { const dirname = FIXTURES + Math.random().toString(16).slice(2) await fs.mkdir(dirname, {}) await fs.stat(dirname) t.pass('fs.promises.mkdir made a directory and stat\'d it') }) - test.only('fs.promises.mkdir recursive', async (t) => { + test('fs.promises.mkdir recursive', async (t) => { const randomDirName = () => Math.random().toString(16).slice(2) const dirname = path.join(FIXTURES, randomDirName(), randomDirName(), randomDirName()) await fs.mkdir(dirname, { recursive: true })