mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:48:03 +00:00
6 lines
204 B
TypeScript
6 lines
204 B
TypeScript
import {getPkgNameAndVersion} from '../src/localize';
|
|
|
|
test('getPkgNameAndVersion from string', () => {
|
|
const result = getPkgNameAndVersion('react');
|
|
expect(result).toEqual({"name": "react"});
|
|
}); |