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

@repay/testing-tools

v0.2.1

Published

Tools to help with testing front-end applications

Downloads

36

Readme

@repay/testing-tools

This module exports tools to help test front-end applications

CLI

Command Line Interface that may be used to run end-to-end tests.

Commands

run-ete-tests

The run-ete-tests command will run through your project's TestCafe test suite using the browsers you provide with little setup. TestCafe configuration such as the test source code, assertion & selector timeouts, client scripts, and test browsers can be configured via the CLI, while any extra configuration can be done through a .testcaferc.json config file.

Options

| Option | Alias | Required (y\n) | Description | | --------------------- | ----- | -------------- | ---------------------------------------------------------------------------------------------- | | --src | -s | n | The glob path pattern to your end-to-end test files. | | --assertionTimeout | -at | n | The timeout (in milliseconds) for TestCafe assertions. Defaults to 15000. | | --selectorTimeout | -st | n | The timeout (in milliseconds) for TestCafe selectors. Defaults to 15000. | | --fixture | -f | n | A specific fixture to run tests for. | | --clientScript | -cs | n | Paths to any custom client scripts/polyfills that need to be loaded in to the TestCafe runner. | | --browser | -b | y | Browsers to run tests through. Browserstack browsers are supported via testcafe-browser-provider-browserstack. |

Example Usage

testing-tools run-ete-tests --src tests/**/*.test.ts -at 20000 -st 20000 --browser chrome --browser browserstack:IE@11:Windows 10 --clientScript ./client-scripts/polyfill.js

JavaScript Functions

Exported JS helpers that you can use in your test code

runEteTests

The runEteTests function is the exported JS function used in the CLI run-ete-tests command. This allows you to configure and run your tests programmatically instead of through the command line.

This function accepts an object with the following attributes:

| Name | Required (y/n) | Type | Description | | ---------------- | -------------- | -------- | ---------------------------------------------------------------------------------------------- | | src | n | string | The glob path pattern to your end-to-end test files. | | assertionTimeout | n | number | The timeout (in milliseconds) for TestCafe assertions. Defaults to 15000. | | selectorTimeout | n | number | The timeout (in milliseconds) for TestCafe selectors. Defaults to 15000. | | fixture | n | string | A specific fixture to run tests for. | | clientScripts | n | [string] | Paths to any custom client scripts/polyfills that need to be loaded in to the TestCafe runner. | | browsers | n | [string] | Browsers to run tests through. Browserstack browsers are supported via testcafe-browser-provider-browserstack. |

Example Usage

import { runEteTests } form '@repay/testing-tools'

await runEteTests({
  src: 'tests/**/*.test.ts',
  assertionTimeout: 20000,
  selectorTimeout: 20000,
  clientScripts: ['./client-scripts/polyfill.js'],
  browsers: ['chrome', 'browserstack:IE@11:Windows 10'],
})

buildTimedTest

The buildTimedTest function is a wrapper for TestCafe that records the time that a given test takes to complete and logs the time taken in the console, to help track an application's performance.

This function accepts one object argument with the following properties:

| Name | Required (y/n) | Description | | ------ | -------------- | ---------------------------------------------------------------------------------------- | | before | n | A function to be called before the test runs, usually to do some setup operations | | after | n | A function to be called after the test completes, usually to to some teardown operations |

Example Usage

import { buildTimedTest } from '@repay/testing-tools'

const before = async (t) => {
  // Some setup...
}
const after = async (t) => {
  // Some after
}

const timedTest = buildTimedTest({ before, after })
timedTest('My Timed Test', async (t) => {
  // Test code
})