From c434e53ba8e59fc03caead120446a0993ef8fbec Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Wed, 26 Jul 2023 11:38:20 +0300 Subject: [PATCH] only reorder files --- .../{ => default-behavior}/node_modules/reporter-cjs/index.js | 0 .../node_modules/reporter-cjs/package.json | 0 .../{ => default-behavior}/node_modules/reporter-esm/index.mjs | 0 .../node_modules/reporter-esm/package.json | 0 .../test-runner/{ => default-behavior}/node_modules/test-nm.js | 0 test/parallel/test-runner-cli.js | 2 +- 6 files changed, 1 insertion(+), 1 deletion(-) rename test/fixtures/test-runner/{ => default-behavior}/node_modules/reporter-cjs/index.js (100%) rename test/fixtures/test-runner/{ => default-behavior}/node_modules/reporter-cjs/package.json (100%) rename test/fixtures/test-runner/{ => default-behavior}/node_modules/reporter-esm/index.mjs (100%) rename test/fixtures/test-runner/{ => default-behavior}/node_modules/reporter-esm/package.json (100%) rename test/fixtures/test-runner/{ => default-behavior}/node_modules/test-nm.js (100%) diff --git a/test/fixtures/test-runner/node_modules/reporter-cjs/index.js b/test/fixtures/test-runner/default-behavior/node_modules/reporter-cjs/index.js similarity index 100% rename from test/fixtures/test-runner/node_modules/reporter-cjs/index.js rename to test/fixtures/test-runner/default-behavior/node_modules/reporter-cjs/index.js diff --git a/test/fixtures/test-runner/node_modules/reporter-cjs/package.json b/test/fixtures/test-runner/default-behavior/node_modules/reporter-cjs/package.json similarity index 100% rename from test/fixtures/test-runner/node_modules/reporter-cjs/package.json rename to test/fixtures/test-runner/default-behavior/node_modules/reporter-cjs/package.json diff --git a/test/fixtures/test-runner/node_modules/reporter-esm/index.mjs b/test/fixtures/test-runner/default-behavior/node_modules/reporter-esm/index.mjs similarity index 100% rename from test/fixtures/test-runner/node_modules/reporter-esm/index.mjs rename to test/fixtures/test-runner/default-behavior/node_modules/reporter-esm/index.mjs diff --git a/test/fixtures/test-runner/node_modules/reporter-esm/package.json b/test/fixtures/test-runner/default-behavior/node_modules/reporter-esm/package.json similarity index 100% rename from test/fixtures/test-runner/node_modules/reporter-esm/package.json rename to test/fixtures/test-runner/default-behavior/node_modules/reporter-esm/package.json diff --git a/test/fixtures/test-runner/node_modules/test-nm.js b/test/fixtures/test-runner/default-behavior/node_modules/test-nm.js similarity index 100% rename from test/fixtures/test-runner/node_modules/test-nm.js rename to test/fixtures/test-runner/default-behavior/node_modules/test-nm.js diff --git a/test/parallel/test-runner-cli.js b/test/parallel/test-runner-cli.js index 3edd1a0cf9ab4f..34ce67caa5e6a5 100644 --- a/test/parallel/test-runner-cli.js +++ b/test/parallel/test-runner-cli.js @@ -67,7 +67,7 @@ const testFixtures = fixtures.path('test-runner'); { // Searches node_modules if specified. - const args = ['--test', join(testFixtures, 'node_modules/*.js')]; + const args = ['--test', join(testFixtures, 'default-behavior/node_modules/*.js')]; const child = spawnSync(process.execPath, args); assert.strictEqual(child.status, 1);