mirror of
https://github.com/layui/layui.git
synced 2026-02-09 02:09:18 +08:00
13 lines
308 B
JavaScript
13 lines
308 B
JavaScript
/**
|
|
* Core Unit Tests
|
|
*/
|
|
|
|
// 单元测试将在 Layui 3 开发接近完成阶段完善
|
|
describe('Test Demo', () => {
|
|
test('Hello, Layui!', () => {
|
|
const greet = (name) => `Hello, ${name}!`;
|
|
expect(greet('Layui')).toBe('Hello, Layui!');
|
|
expect(greet('World')).toBe('Hello, World!');
|
|
});
|
|
});
|