5 Commits

Author SHA1 Message Date
Dustin Tauer
e4ab8518f4 Merge pull request #1 from stevekinney/dustin/course-updates
adding readme, fixes
2024-10-23 10:48:30 -05:00
dtauer
c0fad99503 updated readme 2024-10-23 10:46:54 -05:00
dtauer
c89bb10b06 added readme, removed test dir 2024-10-23 10:45:31 -05:00
Steve Kinney
d9327443f2 Remove unused file 2024-10-08 17:04:23 -06:00
Steve Kinney
a3bcc619ff Update character.test.ts 2024-10-02 12:54:30 -05:00
4 changed files with 16 additions and 7 deletions

16
README.md Normal file
View File

@@ -0,0 +1,16 @@
## 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
```

View File

@@ -1,2 +0,0 @@
import { test, expect } from '@playwright/test';
import { createServer } from 'vite';

View File

@@ -1,5 +0,0 @@
import { it, expect } from 'vitest';
it('is a super simple test', () => {
expect(true).toBe(true);
});