@pinia/root / @pinia/testing / createTestingPinia
createTestingPinia()
ts
function createTestingPinia(options): TestingPinia
Creates a pinia instance designed for unit tests that requires mocking the stores. By default, all actions are mocked and therefore not executed. This allows you to unit test your store and components separately. You can change this with the stubActions
option. If you are using jest, they are replaced with jest.fn()
, otherwise, you must provide your own createSpy
option.
Parameters
• options: TestingOptions
= {}
options to configure the testing pinia
Returns
a augmented pinia instance