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

@konfirm/labrat

v2.0.2

Published

Convenience wrapper to globalize Hapi lab and code (BDD syntax)

Downloads

16

Readme

LabRat

Codacy Badge Build Status

A simple wrapper around Hapi's lab and code modules to allow for easy BDD-style test bootstrapping. It globally exposes several BDD-style methods from both lab and code wich are cleaned up after the tests, this prevents lab from reporting (the defined globals) as possible leaks.

Installation

Note that labrat is a so-called scoped npm module, hence you will need to specify the scope for both the installation and use.

$ npm install --save-dev @konfirm/labrat

Usage

LabRat is intended to make the lab bootstrap slightly more convenient, to use the bootstrap create a file test/index.spec.js with the following contents:

module.exports = require('@konfirm/labrat').export;

Now you can easily create your tests in subfolders of test, where you automatically have access to all of the BDD-style functions lab and code offer.

If you'd like to add (and thus afterwards remove) your own custom global functions, simply provide this to the globalize method;

describe (lab)

describe('Description', () => {
	//  your tests
});

it (lab)

it('does something', (next) => {
	//  your expectation(s)

	next();
})

each

Inspired by the Jest test.each syntax, LabRat (as of 1.4.0) provides the each method to run a test on a series of data

	describe('iterates markdown tables', () => {
		each`
			title   | value             | json
			array   | ${[1, 2, 3]}      | [1,2,3]
			object  | ${{ a: 1, b: 2 }} | {"a":1,"b":2}
			string  | ${'foo'}          | "foo"
			string  | foo               | "foo"
			number  | ${123}            | 123
			boolean | ${true}           | true
			boolean | ${false}          | false
			null    | ${null}           | null
		`('$title turns into $json', ({ value, json }, next) => {
			expect(JSON.stringify(value)).to.equal(json);

			next();
		});
	});

The function returned by the each tagged template literal expects two arguments:

  • the description (which has the $[a-z] pattern replaces with the respective value of the column)
  • the test method, which receives the record (row data as object, containing the keys defined in the first row) and the next method, indicating the test is complete.

before (lab)

Executes a function call before the tests inside a describe-block.

describe('Description', () => {
	before((done) => {
		//  wait one second
		setTimeout(done, 1000);
	});
});

beforeEach (lab)

Similar to before but executes the function call before each test inside the describe-block;

describe('Description', () => {
	beforeEach((done) => {
		//  wait one second
		setTimeout(done, 1000);
	});
});

after (lab)

Executes a function call after the tests inside a describe-block

describe('Description', () => {
	after((done) => {
		//  wait one second
		setTimeout(done, 1000);
	});
});

afterEach (lab)

Similar to after but executes a function call after each test inside a describe-block

describe('Description', () => {
	afterEach((done) => {
		//  wait one second
		setTimeout(done, 1000);
	});
});

expect (code)

Expect provides the Code.expect method, with full access to its full assertion library

expect(true).to.be.a.boolean().and.to.not.equal(false);

globalize

LabRat can make most functions available globally (and clean them up before lab checks for any leaked properties).

//  expose the platform, freemem and totalmem method from the native 'os' module
labrat.globalize(require('os'), 'platform', 'freemem', 'totalmem');

If the function to globalize is stand-alone (not part of a module/class/object), a slightly more elaborate syntax must be used:

function hello(who) {
	return `hello ${who}`;
}

labrat.globalize({ hello }, 'hello');

The example above can also be written in a slightly more compact way

labrat.globalize({ hello: (who) => `hello ${who}` }, 'hello');

source

A lot of times requiring a local module to test can look a bit messy as the path may end up looking something like ../../path/to/module in the test file. In order to reduce this visual clutter, there's the source function, which is a wrapper around require with a prepared base path.

const MyModule = source('mymodule');

By default LabRat will look for the following common module folders in the project root directory;

  • src
  • source
  • sources
  • lib
  • libs

If your project is structured differently, no worries, you can easily change the path.

labrat.sourcePath = '/path/to/modules';

If the project uses the same location for its own modules, simply add this to the test/index.spec.js file:

const labrat = require('@konfirm/labrat');
labrat.sourcePath = '/path/to/the/modules';

module.exports = labrat.export;

Tips to define a custom path

A pretty basic project setup would be something like

my_modules/
	*
node_modules/
	*
test/
	index.spec.js
package.json

From the index.spec.js there are to ways to set my_modules as the main module path for labrat:

Relative to index.spec.js

labrat.sourcePath = `${__dirname}/../my_modules`;

Relative to the project folder

labrat.sourcePath = `${process.cwd()}/my_modules`;

License

MIT License Copyright (c) 2017-2018 Rogier Spieker (Konfirm)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.