From 50cf063a7da792c662912304ffb74a448ce16c21 Mon Sep 17 00:00:00 2001 From: pangil5634 Date: Fri, 1 Aug 2025 18:28:18 +0900 Subject: [PATCH 1/2] =?UTF-8?q?edit=20:=20CI=20=ED=85=8C=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EB=A5=BC=20=EC=9C=84=ED=95=9C=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.js | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/src/App.js b/src/App.js index 3784575..db3a15c 100644 --- a/src/App.js +++ b/src/App.js @@ -1,25 +1,10 @@ -import logo from './logo.svg'; -import './App.css'; - +// src/App.js function App() { return (
-
- logo -

- Edit src/App.js and save to reload. -

- - Learn React - -
+

Hello, CI/CD!

{/* 여기를 수정함 */}
); } -export default App; +export default App; \ No newline at end of file From a8cf8780cc1f52f3f51b1ed6c61baa33a975d412 Mon Sep 17 00:00:00 2001 From: pangil5634 Date: Fri, 1 Aug 2025 18:36:11 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9C=85=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=88=98=EC=A0=95:=20CI/CD=20=ED=85=8D?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=EC=97=90=20=EB=A7=9E=EA=B2=8C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/App.test.js b/src/App.test.js index 1f03afe..094271f 100644 --- a/src/App.test.js +++ b/src/App.test.js @@ -1,8 +1,8 @@ import { render, screen } from '@testing-library/react'; import App from './App'; -test('renders learn react link', () => { +test('renders CI/CD text', () => { render(); - const linkElement = screen.getByText(/learn react/i); - expect(linkElement).toBeInTheDocument(); -}); + const element = screen.getByText(/CI\/CD/i); // 정규표현식도 수정 + expect(element).toBeInTheDocument(); +}); \ No newline at end of file