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

@lmiller1990/tea

v0.0.14

Published

Tea is a very simple test runner. It's written for an upcoming YouTube and blog post series on how to build a test runner. It works with JavaScript and TypeScript.

Downloads

4

Readme

Tea

Tea is a very simple test runner. It's written for an upcoming YouTube and blog post series on how to build a test runner. It works with JavaScript and TypeScript.

Here's a simple snippet, using Tea with must.js for the assertion library:

import demand from "must";
import { describe, it } from "@lmiller1990/tea";

const StringTools = {
  upcase(str: string) {
    return str.toUpperCase();
  },

  split(str: string, sep = " ") {
    return str.split(sep);
  },
};

describe("StringTools", () => {
  describe("upcase", () => {
    it("upcases the input", () => {
      const result = StringTools.upcase("message");
      demand(result).to.eql("MESSAGE");
    });
  });

  describe("split", () => {
    it("splits the input by white space", () => {
      const result = StringTools.split("a b c");
      demand(result).to.eql(["a", "b", "c"]);
    });
  });

  describe("example failure", () => {
    it("foo.bar is qux", () => {
      demand({ foo: { bar: "qux" } }).to.eql({ foo: { bar: "bar" } });
    });
  });
});

Running this produces the following output:

StringTools
  upcase
    ✔ upcases the input
  split
    ✔ splits the input by white space
  example failure
    ✗ foo.bar is qux

FAIL: foo.bar is qux
  Expected: {"foo":{"bar":"bar"}}
  Received: {"foo":{"bar":"qux"}}

Installation

It's available on npm, but unstable and prone to change. This is not intended for production use, but for educational purposes. None the less, you can install it with yarn add @lmiller1990/tea.

Local Development

  • clone the repo
  • yarn install
  • yarn build to build (you need do to this when you make any changes to the source)
  • yarn demo:ts to run a TypeScript test project
  • yarn demo:js to run a JavaScript test project

Design Goals

The code base is as small and simple as possible. It only provides the runner component, so you need to bring your own assertion library. The examples here use must.js.

API

  • describe
  • describe.only
  • it
  • it.only

Usage

If you test is written in JavaScript, just run yarn tea <test files>.

If you are using TypeScript, you can run using ts-node: ts-node -T node_modules/.bin/tea demo.ts. I might implement some kind of register API in the future, eg yarn tea --register ts-node/register demo.ts, but it is not implemented right now.