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