An open API service indexing awesome lists of open source software.

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)

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:

![](https://github.com/dkarter/jest_quickstart/assets/551858/128a6603-7280-43ef-ae35-85eb994fccd5)

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
```