Ringtone app
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.test.tsx 305 B

před 3 roky
před 3 roky
1234567891011121314
  1. import CreateRingtoneTemplate from '.'
  2. import { render } from '@testing-library/react'
  3. describe('template for creating ringtones', () => {
  4. it('should render without crashing', () => {
  5. expect(() => render(
  6. <CreateRingtoneTemplate
  7. session={{
  8. user: {},
  9. }}
  10. />
  11. )).not.toThrow()
  12. })
  13. })