Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@hayspec/runner

hayspec54MIT0.10.2TypeScript support: included

Tests runner for Hayspec framework.

test, testing, spec, specification, hay, javascript, typescript, nodejs, tdd, unit, cli

readme

Build Status NPM Version

This package provides the logic for discovering and performing test files. It's included in the Hayspec CLI, but you can use it to run tests directly from your NodeJS application.

import { Spec } from '@hayspec/spec';
import { Runner } from '@hayspec/runner';

const runner = new Runner();
runner.require('./foo/**/*.test.js', '!./foo/**/foo.test.js');
runner.require('./bar/*.hay.js');

const spec = new Spec();
runner.specs.forEach((folder, spec) => {
  spec.spec(filder, spec);
});
spec.perform();

changelog

Change Log - @hayspec/runner

This log was last generated on Wed, 07 Apr 2021 09:51:28 GMT and should not be manually modified.

0.10.2

Wed, 07 Apr 2021 09:51:28 GMT

Version update only

0.10.1

Wed, 07 Apr 2021 09:51:23 GMT

Version update only

0.10.0

Mon, 04 May 2020 09:30:44 GMT

Version update only

0.9.0

Thu, 26 Sep 2019 17:35:19 GMT

Version update only

0.8.4

Sat, 13 Jul 2019 01:23:01 GMT

Version update only

0.8.3

Mon, 17 Dec 2018 18:41:04 GMT

Version update only

0.8.2

Mon, 10 Dec 2018 21:06:44 GMT

Version update only

0.8.1

Mon, 10 Dec 2018 20:16:37 GMT

Version update only

0.8.0

Tue, 04 Dec 2018 18:16:48 GMT

Initial release