https://github.com/dkarter/jest_quickstart
🃏 A quickstart repo for VanillaJS + Jest (used in teaching TDD)
https://github.com/dkarter/jest_quickstart
Last synced: 3 days ago
JSON representation
🃏 A quickstart repo for VanillaJS + Jest (used in teaching TDD)
- Host: GitHub
- URL: https://github.com/dkarter/jest_quickstart
- Owner: dkarter
- Created: 2024-03-30T14:36:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-30T00:13:11.000Z (about 1 year ago)
- Last Synced: 2025-07-10T12:57:09.129Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jest QuickStart
This is a repo used in teaching. It provides a quick way to get started with
Vanilla JavaScript and Jest.
## Getting Started
I recommend creating your own copy of this repo, so that you can practice committing changes as you go:

Clone the repo:
```bash
git clone git://github.com:/jest_quickstart.git
```
Install packages:
```bash
cd jest_quickstart/
npm install
```
Run your first test:
```bash
npm test
```