orc-component
Version:
react 组件库
23 lines (22 loc) • 723 B
text/typescript
/*
* @Author: peiyanh
* @Date: 2022-06-06 16:03:40
* @LastEditTime: 2022-06-06 16:16:28
* @LastEditors: peiyanh
* @Description:
* @FilePath: /rollup/src/hello.test.ts
* Copyright (c) 2004-2021 i-Sprint Technologies, Inc.
* address:
* All rights reserved.
*
* This software is the confidential and proprietary information of
* i-Sprint Technologies, Inc. ('Confidential Information'). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with i-Sprint.
*/
// const hello = require('./hello');
import {hello} from './hello'
test('adds 1 + 2 to equal 3', () => {
expect(hello()).toBe(3);
});