Ringtone app
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.test.tsx 305 B

3 年前
3 年前
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. })