npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

espresso-runner

v1.0.3

Published

Espresso is a lightweight testing framework for JavaScript applications (CLI + Web).

Downloads

229

Readme

Espresso (espresso-runner npm)

A lightweight testing framework for JavaScript applications (CLI + Web).

Description

Espresso is a minimal and intuitive, powerful JavaScript testing framework built from scratch. It provides an easy way to write and run tests in your JavaScript projects with zero configuration, offering a simple syntax inspired by popular testing frameworks. This library is designed to keep the testing process lean and efficient while adding a bit of style to your console output.

espresso runner - testFn passed the test

Key Features

  • Simple syntax for writing tests with it and beforeEach.
  • Colorful and expressive test output using chalk.
  • Supports both DOM-based tests (via jsdom) and regular function tests.
  • Lightweight and minimal dependencies.
  • Flexible enough to integrate into any project.

Installation

To install cols-espresso as a dependency on the machine, run:

$ sudo npm install -g espresso-runner

Usage

Once installed, you can add tests to your project by creating .test.js files. To run these tests, simply invoke the espresso command in your project root.

$ espresso
OR
$ esp

Writing a Test

Here's an example of a test using cols-espresso:

const assert = require('assert');

let numbers;
beforeEach(() => {
  numbers = [2, 4, 6, 8];
});

it('should return thrice the array', () => {
  const result = numbers.map((value) => value * 3);
  assert.deepStrictEqual(result, [6, 12, 18, 24]);
});

Running Tests

Once you've written your tests in files that end with .test.js, run the following command from the root of your project to execute all tests:

espresso

You’ll see a colorful output that provides clear feedback about passed or failed tests.

Example Test Output

Running ESPRESSO 🔥 on map.test.js
  ✔ Test Passed - should return thrice the array
  ✔ Test Passed - beforeEach is ran each time

Running ESPRESSO 🔥 on forEach.test.js
  ✔ Test Passed - should sum an array
  ✔ Test Passed - beforeEach is ran each time

DOM Testing Example

With cols-espresso, you can also write DOM tests using jsdom:

const assert = require('assert');
const render = require('./render'); // Assuming you have a render function

it('has a text input', async () => {
  const dom = await render('index.html');
  const input = dom.window.document.querySelector('input');
  assert(input);
});

it('shows a success message with a valid email', async () => {
  const dom = await render('index.html');
  const input = dom.window.document.querySelector('input');
  input.value = '[email protected]';

  dom.window.document
    .querySelector('form')
    .dispatchEvent(new dom.window.Event('submit'));

  const h1 = dom.window.document.querySelector('h1');
  assert.strictEqual(h1.innerHTML, 'AWESOME 🔥');
});

License

The Espresso project is licensed under the MIT License. See the [LICENSE] file for more information.


Screenshoots

espresso runner - testFn fails the test

espresso - testFn fails the test

espresso runner - testFn passed the test

espresso - testFn passed the test

espresso runner - testWeb failed the test returning different message upon correct email

espresso - testWeb failed the test returning different message upon submit than expected

espresso runner - testWeb failed the test returning different message upon incorrect email

espresso - testWeb failed the test returning different message upon incorrect email

espresso runner - testWeb passed the test

espresso - testWeb passed the test