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

@platform-os/testcafe-helpers

v2.3.2

Published

TestCafe helpers for platformOS

Downloads

1,948

Readme

Why?

This package exists to DRY up tests when they are scattered across multiple directories.

For example, if platformOS project is made of many modules and modules have to be tested individually, but also project has to be tested as a whole.

You can see example source code: examples

How?

All functions are pure functions and are made with dependency injection in mind.

Provide the input (module itself does not include TestCafe as dependency) and you will get the output. All methods are async, so do not forget about awaiting for values.

Installation and usage

Install package

npm i @platform-os/testcafe-helpers

Import what you need

import {
  checkLiquidErrors,
  getResultElement, 
  getResultText,
  getBtAlertElement,
  getBtAlertText
} from '@platform-os/testcafe-helpers';

Methods

checkLiquidErrors

Checks html body content liquid errors.

Example

test('checkLiquidErrors', async t => {
  await checkLiquidErrors({ t, Selector });
});

getResultElement

Gets TestCafe element marked using data-result data attribute in html.

Example

For HTML: <p data-result="money_total">50</p>

test('getResultElement', async t => {
  const resultElement = await getResultElement({ name: 'money_total', Selector });
  const attr = resultElement.getAttribute('data-result');

  await t.expect(attr).eql('money_total');
});

getResultText

Returns textContent of an element marked using data-result data attribute in html.

Example

For HTML: <p data-result="money_total">50</p>

test('getResultText', async t => {
  const resultText = await getResultText({ name: 'money_total', Selector });

  await t.expect(resultText).eql('50');
});

getBtAlertElement

Gets TestCafe element marked using default Twitter Bootstrap alert css class. type defaults to success.

Example

For HTML: <div class="alert alert-danger">Error</div><div class="alert alert-success">Success</div>

test('getBtAlertElement', async t => {
  const dangerElement = await getBtAlertElement({ type: 'danger', Selector });
  const dangerText = await dangerElement.innerText;
  
  const noTypeElement = await getBtAlertElement({ Selector });
  const noTypeText = await noTypeElement.innerText;

  await t.expect(dangerText).contains('Error');
  await t.expect(noTypeText).contains('Success');
});

getBtAlertText

Returns textContent of an alert marked using default Twitter Bootstrap alert css class. type defaults to success.

Example

For HTML: <div class="alert alert-danger">Error</div><div class="alert alert-success">Success</div>

test('getBtAlertText', async t => {
  const danger = await getBtAlertText({ type: 'danger', Selector });
  const noType = await getBtAlertText({ Selector });
  
  await t.expect(danger).contains('Error');
  await t.expect(noType).contains('Success');
});

getPerformanceMetrics

Returns an object with two objects inside: raw and computed.

Raw

Contains raw data from window.performance.timing.

Read more

Computed

Computed contains couple commonly used metrics that will give you basic overview on the performance.

  • ttfb - from navigationStart till responseEnd
  • dns - from domainLookupStart till domainLookupEnd
  • tcp - from connectStart till connectEnd
  • domReady - from navigationStart till domComplete
  • networkLatency - fetchStart till responseEnd
  • processing - loadEventEnd till responseEnd
  • everything - loadEventEnd till navigationStart

Example

test('DOM ready under 2s', async t => {
  const perf = await getPerformanceMetrics({ t });
  const computed = perf.computed;
  
  await t.expect(computed.domReady).lt(2000);
});

Contributions

Issues are open