diff --git a/src/options.spec.ts b/src/core/options.spec.ts similarity index 68% rename from src/options.spec.ts rename to src/core/options.spec.ts index f79902508..09e6e057f 100644 --- a/src/options.spec.ts +++ b/src/core/options.spec.ts @@ -1,6 +1,7 @@ +// this file had to be moved to avoid tsup from picking it up import { describe, expect, it } from 'vitest' -import { resolveOptions } from './options' -import { mockWarn } from '../tests/vitest-mock-warn' +import { resolveOptions } from '../options' +import { mockWarn } from '../../tests/vitest-mock-warn' describe('options', () => { mockWarn()