mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-30 21:51:11 +08:00
8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import { expect, test } from 'vitest';
|
|
import { upperFirstCamelCase, base64 } from '../src';
|
|
|
|
test('base', () => {
|
|
expect(upperFirstCamelCase('helloWorld')).toEqual('HelloWorld');
|
|
expect(base64('abc'))
|
|
});
|