Run Jest with ease
yarn add --dev projector-jest
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,
});
}