@hayspec/runner
v0.10.2
Published
Tests runner for Hayspec framework.
Downloads
104
Maintainers
Readme
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();