2018-08-07 10:23:28 +00:00
|
|
|
const helloWorld = require('./helloWorld');
|
2017-08-17 18:47:39 +00:00
|
|
|
|
2021-05-08 18:27:13 +00:00
|
|
|
describe('Hello World', function() {
|
|
|
|
it('says hello world', function() {
|
|
|
|
expect(helloWorld()).toEqual('Hello, World!');
|
|
|
|
});
|
|
|
|
});
|