odin-default-js-exercises/01_helloWorld/helloWorld.spec.js

20 lines
363 B
JavaScript

const helloWorld = require('./helloWorld');
describe('Hello World', function() {
test('says "Hello, World!"', function() {
expect(helloWorld()).toEqual('Hello, World!');
});
});
const helloWorld= require(./helloWorld');
describe('Hello World',function(){
test('says "Hello,World!"' ,function(){
expect(helloWorld()).toEqual('Hello,World!');
});
})