exercism/ecmascript/hello-world/hello-world.spec.js

10 lines
203 B
JavaScript
Raw Normal View History

2018-03-05 20:09:52 +00:00
import HelloWorld from './hello-world';
describe('Hello World', () => {
const greeter = new HelloWorld();
test('says hello', () => {
expect(greeter.hello()).toEqual('Hello, World!');
});
});