From c89bb10b064fe54a128d8946b77b1c62a81f4e1b Mon Sep 17 00:00:00 2001 From: dtauer Date: Wed, 23 Oct 2024 10:45:31 -0500 Subject: [PATCH 1/2] added readme, removed test dir --- README.md | 11 +++++++++++ examples/accident-counter/tests/counter.spec.js | 2 -- 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 README.md delete mode 100644 examples/accident-counter/tests/counter.spec.js diff --git a/README.md b/README.md new file mode 100644 index 0000000..2d2e095 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Testing Fundamentals + +## Setup Instructions + +Clone this repository and install the dependencies: + +```bash +git clone https://github.com/stevekinney/introduction-to-testing.git +cd introduction-to-testing +npm install +``` \ No newline at end of file diff --git a/examples/accident-counter/tests/counter.spec.js b/examples/accident-counter/tests/counter.spec.js deleted file mode 100644 index e924d05..0000000 --- a/examples/accident-counter/tests/counter.spec.js +++ /dev/null @@ -1,2 +0,0 @@ -import { test, expect } from '@playwright/test'; -import { createServer } from 'vite'; From c0fad99503d2d48e7c7011ed091f4138c09e4bc8 Mon Sep 17 00:00:00 2001 From: dtauer Date: Wed, 23 Oct 2024 10:46:54 -0500 Subject: [PATCH 2/2] updated readme --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2d2e095..9a41e2f 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,16 @@ -# Testing Fundamentals +## Testing Fundamentals Course + +This is a companion repository for the [Testing Fundamentals](https://frontendmasters.com/courses/testing/) course on Frontend Masters. +[![Frontend Masters](https://static.frontendmasters.com/assets/brand/logos/full.png)](https://frontendmasters.com/courses/testing/) ## Setup Instructions +> We recommend using Node.js version 20+ for this course + Clone this repository and install the dependencies: ```bash git clone https://github.com/stevekinney/introduction-to-testing.git cd introduction-to-testing npm install -``` \ No newline at end of file +```