Files
clawd/test-ralph-workflow/tests/hello.test.js
Echo 59abff1bce feat: US-003 - Test pentru hello
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-08 14:05:52 +00:00

6 lines
151 B
JavaScript

const { hello } = require('../src/hello');
test('hello("World") returns "Hello, world!"', () => {
expect(hello('World')).toBe('Hello, world!');
});