初始化拉取,原文件名:admin-plus-webpack5
Some checks failed
Call HTTPS API / build (push) Has been cancelled

This commit is contained in:
2025-12-26 20:43:10 +08:00
parent 7c68ec3a42
commit 3e2da1115e
420 changed files with 75413 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
// @ts-nocheck
import { isExternal, isNumber, isPassword } from '@/utils/validate'
/**
* @description 判读是否为外链
* @param path
* @returns {boolean}
*/
describe('Utils:isExternal', () => {
it('isExternal', () => {
expect(isExternal('https://baidu.com')).toBe(true)
expect(isExternal('baidu.com')).toBe(false)
})
})
/**
* @description 校验密码是否小于6位
* @param value
* @returns {boolean}
*/
describe('Utils:isPassword', () => {
it('isPassword', () => {
expect(isPassword('123456')).toBe(true)
expect(isPassword('12345')).toBe(false)
})
})
/**
* @description 判断是否为数字
* @param value
* @returns {boolean}
*/
describe('Utils:isNumber', () => {
it('isNumber', () => {
expect(isNumber('123456')).toBe(true)
expect(isNumber('abcd')).toBe(false)
})
})