From 2d1720f18fe3b4c5c999b04813af5e3637da7d66 Mon Sep 17 00:00:00 2001
From: bbypls <44601989+bbypls@users.noreply.github.com>
Date: Tue, 30 Oct 2018 19:36:22 +1100
Subject: [PATCH] Fix missing semicolons causing compiler warnings
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 0793532..19dfc2f 100644
--- a/README.md
+++ b/README.md
@@ -408,12 +408,12 @@ import Hello from './Hello';
it('renders the correct text when no enthusiasm level is given', () => {
const hello = enzyme.shallow();
- expect(hello.find(".greeting").text()).toEqual('Hello Daniel!')
+ expect(hello.find(".greeting").text()).toEqual('Hello Daniel!');
});
it('renders the correct text with an explicit enthusiasm of 1', () => {
const hello = enzyme.shallow();
- expect(hello.find(".greeting").text()).toEqual('Hello Daniel!')
+ expect(hello.find(".greeting").text()).toEqual('Hello Daniel!');
});
it('renders the correct text with an explicit enthusiasm level of 5', () => {