Fix code indentation on helloWorld README.md

This commit is contained in:
Michael Horn 2019-08-17 13:02:22 -07:00
parent cc479b5e70
commit 3d71a9ac1f
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ Let's look at the spec file first:
const helloWorld = require('./helloWorld'); const helloWorld = require('./helloWorld');
describe('Hello World', function() { describe('Hello World', function() {
it('says hello world', function() { it('says hello world', function() {
expect(helloWorld()).toEqual('Hello, World!'); expect(helloWorld()).toEqual('Hello, World!');
}); });
}); });