PR Summary

What problems was I solving

The vitest config for the logger-context-pino package contained an empty globalSetup: [] array that was leftover scaffolding from the project template. Because Vitest ignores an empty globalSetup array, the option had no effect and was dead configuration.

What user-facing changes did I ship

None. This is an internal test configuration cleanup in a library package and does not affect production behavior, APIs, or user-visible features.

How I implemented it

Removed the single globalSetup: [], line from architect/logger-context-pino/vite.config.ts. The config still extends the shared vitest.base.config.ts, and all other test settings remain unchanged.

Description for the changelog

Removed the unused empty globalSetup placeholder from the logger-context-pino vitest configuration. The change has no functional impact because Vitest treats an empty array the same as omitting the option.

Pino logger context test config cleanup

low1 file
Removes the unused empty `globalSetup: []` array from the `logger-context-pino` vitest config.