Skip to content

Commit

Permalink
📝 Update readme with install instructions and badges
Browse files Browse the repository at this point in the history
  • Loading branch information
vhoyer committed Apr 20, 2023
1 parent 7bc4538 commit 1335bf1
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# test-lazy-let
# `@vhoyer/lazy-let`

An utility for using lazy variables in a BDD test environment with nested
`describe`s, and `it`s.
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/vhoyer/lazy-let/ci.yml?label=ci)](https://github.com/vhoyer/lazy-let)
[![bundle size](https://img.shields.io/bundlephobia/min/@vhoyer/lazy-let)](https://bundlephobia.com/package/@vhoyer/lazy-let)
[![npm](https://img.shields.io/npm/dw/@vhoyer/lazy-let?label=npm%20downloads)](https://www.npmjs.com/package/@vhoyer/lazy-let)

An utility for using lazy variables in a BDD test environment with nested `describe`s, and `it`s.

## Installation

```bash
npm install --save-dev @vhoyer/lazy-let
```

## Usage

```javascript
import { describe, it, expect, afterEach } from 'vitest';
Expand Down

0 comments on commit 1335bf1

Please sign in to comment.