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

@shopify/loom-plugin-jest

v1.0.2

Published

loom plugin for testing with jest

Downloads

9,214

Readme

@shopify/loom-plugin-jest

This package provides a loom plugin that runs the Jest test runner as part of the loom test command.

Installation

yarn add @shopify/loom-plugin-jest --dev

Usage

Add jest to your loom workspace plugins. Jest is a workspace plugin, however most of its configuration through hooks occurs on the per-project level.

import {createWorkspace} from '@shopify/loom';
import {jest} from '@shopify/loom-plugin-jest';

// `createWorkspace` may be `createPackage`, or `createWebApp` if your workspace
// consists of a single project
export default createWorkspace((workspace) => {
  workspace.use(jest());
});

Jest Test Setup Files

By default this plugin sets Jest's setupFiles to look for setup files in tests/setup/environment.* and setupFilesAfterEnv to look for setup files in tests/setup/tests.* at the root of your workspace, and at the root of each project you have configured (if you have only one loom config then this is the same directory). You can modify this list of files by adjusting the jestSetupFiles, jestSetupFilesAfterEnv project hooks (for per-project files) and the jestSetupFiles, jestSetupFilesAfterEnv workspace hooks (for all projects in the workspace).

Jest Environment

The default environment is node. If you need access to a browser-like environment (such as having access to window) then you will need to use the jsdom environment. You can set this on a per-project basis with the jestTestEnvironment hook, which sets Jest's testEnvironment option:

import {createPackage, createProjectPlugin} from '@shopify/loom';

export default createPackage((pkg) => {
  pkg.use(jestAdjustments());
});

function jestAdjustments() {
  return createProjectPlugin('JestAdjustments', ({tasks: {test}}) => {
    test.hook(({hooks}) => {
      hooks.configure.hook((configuration) => {
        configuration.jestTestEnvironment?.hook(() => 'jsdom');
      });
    });
  });
}

Jest Test Runner

The default test runner is jest-circus/runner. If need to use a different test runner - such as the legacy test runner from before Jest 27 jest-jasmine2 - you can set this on a per-project basis with the jestTestRunner hook, which sets Jest's testRunner option:

import {createPackage, createProjectPlugin} from '@shopify/loom';

export default createPackage((pkg) => {
  pkg.use(jestAdjustments());
});

function jestAdjustments() {
  return createProjectPlugin('JestAdjustments', ({tasks: {test}}) => {
    test.hook(({hooks}) => {
      hooks.configure.hook((configuration) => {
        configuration.jestTestRunner?.hook(() => 'jest-jasmine2');
      });
    });
  });
}

Custom Transforms

By default JavaScript and TypeScript is supported. If you need to support additional file types you can use custom transforms - you can set these on a per-project basis with the jestTransform hook, which sets Jest's transform option:

import {createPackage, createProjectPlugin} from '@shopify/loom';

export default createPackage((pkg) => {
  pkg.use(jestAdjustments());
});

function jestAdjustments() {
  return createProjectPlugin('JestAdjustments', ({tasks: {test}}) => {
    test.hook(({hooks}) => {
      hooks.configure.hook((configuration) => {
        configuration.jestTransform?.hook((transforms) => ({
          ...transforms,
          '\\.txt$': 'path-to-custom-transformer',
        }));
      });
    });
  });
}

Hooks

This plugin adds the following hooks to JestProjectHooks:

  • jestModuleFileExtensions, jestModuleNameMapper, jestSetupFiles, jestSetupFilesAfterEnv, jestTestEnvironment, jestTestRunner, jestTransform, jestWatchPathIgnorePatterns: Convineince hooks that map to the Jest config options with the same name without the "jest" prefix (e.g. the jestTestEnvironment hook maps to the testEnvironment Jest option).

    Modifying one of these hooks is functionally identical to modifying the corresponding key in the object that is returned by the jestConfig project hook.

    import {createProjectPlugin} from '@shopify/loom';
    
    function demoPlugin() {
      return createProjectPlugin('Demo', ({tasks: {test}}) => {
        test.hook(({hooks}) => {
          hooks.configure.hook((configure) => {
            // Configure the test environment
            configuration.jestTestEnvironment?.hook(() => 'jsdom');
          });
        });
      });
    }
  • jestConfig: The Jest per-project configuration for single project. Use this to manipulate the Jest config for options that are not exposed as convinience hooks.

    import {createProjectPlugin} from '@shopify/loom';
    
    function demoPlugin() {
      return createProjectPlugin('Demo', ({tasks: {test}}) => {
        test.hook(({hooks}) => {
          hooks.configure.hook((configure) => {
            // Increase the test timeout to 10 seconds
            configure.jestConfig?.hook((config) => ({
              ...config,
              testTimeout: 10000,
            }));
          });
        });
      });
    }

This plugin adds the following hooks to JestWorkspaceHooks:

  • jestSetupFiles and jestSetupFilesAfterEnv: Arrays of files that shall be added to every project's setupFiles and setupFilesAfterEnv respectively. jestSetupFiles defaults to tests/setup/environment.* and jestSetupFilesAfterEnv defaults to tests/setup/tests.*. These paths are relative to the workspace root.

    import {createWorkspacePlugin} from '@shopify/loom';
    
    function demoPlugin() {
      return createWorkspacePlugin('Demo', ({tasks: {test}}) => {
        test.hook(({hooks}) => {
          hooks.configure.hook((configure) => {
            // Add ./path/to/my-custom-setup.ts to setupFiles
            configure.jestSetupFiles?.hook((files) => [
              ...files,
              './path/to/my-custom-setup.ts',
            ]);
            // Add ./path/to/my-custom-setup-after-env.ts to setupFiles
            configure.jestSetupFilesAfterEnv?.hook((files) => [
              ...files,
              './path/to/my-custom-setup-after-env.ts',
            ]);
          });
        });
      });
    }
  • jestConfig: The final Jest configuration object that is executed. This contains all projects.

    import {createWorkspacePlugin} from '@shopify/loom';
    
    function demoPlugin() {
      return createWorkspacePlugin('Demo', ({tasks: {test}}) => {
        test.hook(({hooks}) => {
          hooks.configure.hook((configure) => {
            // Configure the coverage output directory
            configure.jestConfig?.hook((config) => ({
              ...config,
              coverageDirectory: './some-path',
            }));
          });
        });
      });
    }
  • jestFlags: An object of options to convert into command line flags for the jest command. These options are camelcase versions of their CLI counterparts.

    import {createWorkspacePlugin} from '@shopify/loom';
    
    function demoPlugin() {
      return createWorkspacePlugin('Demo', ({tasks: {test}}) => {
        test.hook(({hooks}) => {
          hooks.configure.hook((configure) => {
            // Always diable watch mode
            configure.jestFlags?.hook((flags) => ({
              ...flags,
              watch: false,
            }));
          });
        });
      });
    }