summary refs log tree commit diff stats
path: root/javascript/hello-world/hello-world.spec.js
blob: cd0b7ec1c04608cdbe7288fbc15ad411e6750d5c (plain) (blame)
1
2
3
4
5
6
7
import { hello } from './hello-world';

describe('Hello World', () => {
  test('Say Hi!', () => {
    expect(hello()).toEqual('Hello, World!');
  });
});