From ad56c1a5a83efe496c97760a2a4432b5eb8e67b3 Mon Sep 17 00:00:00 2001
From: Yeji Choi
Date: Thu, 3 Jun 2021 12:09:19 +0900
Subject: [PATCH 01/21] =?UTF-8?q?feat.=20=EC=B4=88=EA=B8=B0=20=ED=8C=A8?=
=?UTF-8?q?=ED=82=A4=EC=A7=80=20=EC=84=B8=ED=8C=85?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
README.md | 4 +
cypress.json | 1 +
cypress/fixtures/example.json | 5 +
cypress/integration/examples/actions.spec.js | 299 +++
cypress/integration/examples/aliasing.spec.js | 39 +
.../integration/examples/assertions.spec.js | 177 ++
.../integration/examples/connectors.spec.js | 97 +
cypress/integration/examples/cookies.spec.js | 77 +
.../integration/examples/cypress_api.spec.js | 202 ++
cypress/integration/examples/files.spec.js | 89 +
.../examples/local_storage.spec.js | 52 +
cypress/integration/examples/location.spec.js | 32 +
cypress/integration/examples/misc.spec.js | 104 +
.../integration/examples/navigation.spec.js | 56 +
.../examples/network_requests.spec.js | 163 ++
cypress/integration/examples/querying.spec.js | 114 +
.../examples/spies_stubs_clocks.spec.js | 205 ++
.../integration/examples/traversal.spec.js | 121 ++
.../integration/examples/utilities.spec.js | 110 +
cypress/integration/examples/viewport.spec.js | 59 +
cypress/integration/examples/waiting.spec.js | 31 +
cypress/integration/examples/window.spec.js | 22 +
cypress/plugins/index.js | 22 +
cypress/support/commands.js | 25 +
cypress/support/index.js | 20 +
package.json | 18 +
src/ts/utils.ts | 3 +
yarn.lock | 1853 +++++++++++++++++
28 files changed, 4000 insertions(+)
create mode 100644 cypress.json
create mode 100644 cypress/fixtures/example.json
create mode 100644 cypress/integration/examples/actions.spec.js
create mode 100644 cypress/integration/examples/aliasing.spec.js
create mode 100644 cypress/integration/examples/assertions.spec.js
create mode 100644 cypress/integration/examples/connectors.spec.js
create mode 100644 cypress/integration/examples/cookies.spec.js
create mode 100644 cypress/integration/examples/cypress_api.spec.js
create mode 100644 cypress/integration/examples/files.spec.js
create mode 100644 cypress/integration/examples/local_storage.spec.js
create mode 100644 cypress/integration/examples/location.spec.js
create mode 100644 cypress/integration/examples/misc.spec.js
create mode 100644 cypress/integration/examples/navigation.spec.js
create mode 100644 cypress/integration/examples/network_requests.spec.js
create mode 100644 cypress/integration/examples/querying.spec.js
create mode 100644 cypress/integration/examples/spies_stubs_clocks.spec.js
create mode 100644 cypress/integration/examples/traversal.spec.js
create mode 100644 cypress/integration/examples/utilities.spec.js
create mode 100644 cypress/integration/examples/viewport.spec.js
create mode 100644 cypress/integration/examples/waiting.spec.js
create mode 100644 cypress/integration/examples/window.spec.js
create mode 100644 cypress/plugins/index.js
create mode 100644 cypress/support/commands.js
create mode 100644 cypress/support/index.js
create mode 100644 package.json
create mode 100644 src/ts/utils.ts
create mode 100644 yarn.lock
diff --git a/README.md b/README.md
index 0886ebbbd..44868db60 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,10 @@
+### 배경 지식
+- [requestAnimationFrame()에 관한 설명](https://m.blog.naver.com/psj9102/221745767536)
+
+
### 🎯 step1
- [ ] 주어진 횟수 동안 n대의 자동차는 전진 또는 멈출 수 있다.
- [ ] 자동차에 이름을 부여할 수 있다. 전진하는 자동차를 출력할 때 자동차 이름을 같이 출력한다.
diff --git a/cypress.json b/cypress.json
new file mode 100644
index 000000000..0967ef424
--- /dev/null
+++ b/cypress.json
@@ -0,0 +1 @@
+{}
diff --git a/cypress/fixtures/example.json b/cypress/fixtures/example.json
new file mode 100644
index 000000000..02e425437
--- /dev/null
+++ b/cypress/fixtures/example.json
@@ -0,0 +1,5 @@
+{
+ "name": "Using fixtures to represent data",
+ "email": "hello@cypress.io",
+ "body": "Fixtures are a great way to mock data for responses to routes"
+}
diff --git a/cypress/integration/examples/actions.spec.js b/cypress/integration/examples/actions.spec.js
new file mode 100644
index 000000000..092637998
--- /dev/null
+++ b/cypress/integration/examples/actions.spec.js
@@ -0,0 +1,299 @@
+///