From 597357bdd1f161d9bb34ef30350b7de52085e285 Mon Sep 17 00:00:00 2001 From: Ivan Dolgov Date: Wed, 26 Sep 2018 17:27:30 +0300 Subject: Test CI again --- src/Root.js | 2 +- src/Root.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Root.js b/src/Root.js index 784bee3..95fb168 100644 --- a/src/Root.js +++ b/src/Root.js @@ -2,7 +2,7 @@ import React from 'react'; const Root = () => (
-

Hello, big world!

+

Hello, world!

); diff --git a/src/Root.test.js b/src/Root.test.js index 20fafa0..7f785a2 100644 --- a/src/Root.test.js +++ b/src/Root.test.js @@ -8,6 +8,6 @@ describe('Root', () => { test('greeting is shown', () => { const { container } = render(); - expect(container).toHaveTextContent('Hello, big world!'); + expect(container).toHaveTextContent('Hello, world!'); }); }); -- cgit v1.2.1