Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 397 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 397 Bytes

projector-jest

Run Jest with ease

Installation

yarn add --dev projector-jest

Usage

import * as jest from 'projector-jest';

export async function test() {
  await jest.test();
}

export async function testWithConfig() {
  await jest.test({
    testPathIgnorePatterns: ["/node_modules/", "/fixtures/"],
    watch: true,
  });
}