* feat(product, pricing, utils): Transaction issues and reference issues * fixes decorators * cleanup * fix product module upsert * fix missing active manager * increase timeout * revert package.json * WIP * try another node version based on findings with memory issues with jest introduced after 16.11 but fixed in 21 * re add bail * fix variant options * chore: bulk create pricing * chore: workflow bulk * Create big-chefs-dream.md * fix missing update for upserty * Add integration tests for product options upsert * rm unnecessary return * fix product prices workflow issue * cleanup * fix flag * fix model --------- Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com> Co-authored-by: Carlos R. L. Rodrigues <rodrigolr@gmail.com> Co-authored-by: Riqwan Thamir <rmthamir@gmail.com>
24 lines
557 B
JavaScript
24 lines
557 B
JavaScript
process.chdir(__dirname)
|
|
|
|
module.exports = {
|
|
name: "Plugins",
|
|
testEnvironment: `node`,
|
|
rootDir: "./",
|
|
testPathIgnorePatterns: [
|
|
`/examples/`,
|
|
`/www/`,
|
|
`/dist/`,
|
|
`/node_modules/`,
|
|
`<rootDir>/node_modules/`,
|
|
`__tests__/fixtures`,
|
|
`__testfixtures__`,
|
|
`.cache`,
|
|
],
|
|
transformIgnorePatterns: [`/dist`],
|
|
transform: { "^.+\\.[jt]s$": `../../jest-transformer.js` },
|
|
setupFiles: ["../setup-env.js"],
|
|
setupFilesAfterEnv: ["../setup.js"],
|
|
globalSetup: "../globalSetup.js",
|
|
globalTeardown: "../globalTeardown.js",
|
|
}
|