diff --git a/test/fixtures/fakeJsdoc/jsdoc b/test/fixtures/jsdocStub/jsdoc similarity index 100% rename from test/fixtures/fakeJsdoc/jsdoc rename to test/fixtures/jsdocStub/jsdoc diff --git a/test/fixtures/fakeJsdoc/jsdoc.CMD b/test/fixtures/jsdocStub/jsdoc.CMD similarity index 100% rename from test/fixtures/fakeJsdoc/jsdoc.CMD rename to test/fixtures/jsdocStub/jsdoc.CMD diff --git a/test/main.test.js b/test/main.test.js index 312ff61..087cdd3 100644 --- a/test/main.test.js +++ b/test/main.test.js @@ -14,7 +14,7 @@ import path from 'node:path' import { fileURLToPath } from 'node:url' describe('jsdoc-cli-wrapper', () => { - const root = fixturePath('fakeJsdoc') + const root = fixturePath('jsdocStub') const destDirHelper = new DestDirHelper() const mainPath = fileURLToPath(new URL('../index.js', import.meta.url)) diff --git a/test/runJsdoc.test.js b/test/runJsdoc.test.js index 8302568..dd0eb95 100644 --- a/test/runJsdoc.test.js +++ b/test/runJsdoc.test.js @@ -12,7 +12,7 @@ import { afterEach, beforeEach, describe, expect, test } from 'vitest' import path from 'node:path' describe('runJsdoc', () => { - const root = fixturePath('fakeJsdoc') + const root = fixturePath('jsdocStub') const env = { [PATH_KEY]: root } const platform = process.platform const destDirHelper = new DestDirHelper()