Skip to content

API DocumentationDocs


API Documentation / @pinia/testing / createTestingPinia

Function: createTestingPinia()

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

TestingPinia

a augmented pinia instance

Released under the MIT License.