validate.spec.ts 831 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // @ts-nocheck
  2. import { isExternal, isPassword, isNumber } from '@/utils/validate'
  3. /**
  4. * @description 判读是否为外链
  5. * @param path
  6. * @returns {boolean}
  7. */
  8. describe('Utils:isExternal', () => {
  9. it('isExternal', () => {
  10. expect(isExternal('https://baidu.com')).toBe(true)
  11. expect(isExternal('baidu.com')).toBe(false)
  12. })
  13. })
  14. /**
  15. * @description 校验密码是否小于6位
  16. * @param value
  17. * @returns {boolean}
  18. */
  19. describe('Utils:isPassword', () => {
  20. it('isPassword', () => {
  21. expect(isPassword('123456')).toBe(true)
  22. expect(isPassword('12345')).toBe(false)
  23. })
  24. })
  25. /**
  26. * @description 判断是否为数字
  27. * @param value
  28. * @returns {boolean}
  29. */
  30. describe('Utils:isNumber', () => {
  31. it('isNumber', () => {
  32. expect(isNumber('123456')).toBe(true)
  33. expect(isNumber('abcd')).toBe(false)
  34. })
  35. })