Skip to content

Guia completo para

Dominar a Pinia

escrito pelo seu criador

API Documentation / @pinia/testing

Module: @pinia/testing ​

Interfaces ​

Functions ​

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 ​

NameTypeDescription
optionsTestingOptionsoptions to configure the testing pinia

Returns ​

TestingPinia

a augmented pinia instance

Lançada sob a Licença MIT.