test.ts.t 449 B

1234567891011121314151617
  1. ---
  2. to: "<%= h.getPath('store', { directoryScope: directoryScope ,suffix:`__tests__/${storeName}.spec.ts`})%>"
  3. ---
  4. // <%= h.zammadCopyright() %>
  5. import { createPinia, setActivePinia, storeToRefs } from 'pinia'
  6. describe('<%= h.usePrefix(storeName) %>', () => {
  7. beforeEach(()=> {
  8. setActivePinia(createPinia())
  9. })
  10. it.todo('should be tested', ()=> {
  11. const store = <%= h.usePrefix(storeName) %>()
  12. expect(store).toBeDefined()
  13. })
  14. })