v0.1.0
Minor Changes
-
✨ deprecate
setup-zonesin favor of analog's setupTestBed (by @shairez in #12)Motivation
Analog has implemented their own
setupTestBed()function that provides a more comprehensive and maintained solution for setting up Angular tests with Vitest.Rather than maintaining duplicate setup logic and keeping documentation in sync, we're directing users to Analog's official documentation.
Migration Guide
Users should migrate from:
// vitest.config.ts setupFiles: ['vitest-browser-angular/setup-zones'];
To using Analog's
setupTestBed():setupTestBed({ browserMode: true });
See https://analogjs.org/docs/features/testing/vitest for full instructions