mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-07-02 00:17:19 +08:00
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
import { expect, test } from 'vitest';
|
|
import { isUrl, isEmail, isCarNo } from '../src';
|
|
|
|
test('isCarNo', () => {
|
|
// const id = '粤ED4E80A';
|
|
// const id = '粤EB7T809';
|
|
const id = '粤BD12345';
|
|
expect(isCarNo(id)).toBe(true);
|
|
});
|