* fix: make plugin tests run with integration test suites" * add: plugins to test pipeline * add: run integration tests on different jobs + fix failing test command * fix: typo * fix: pipeline
22 lines
491 B
JavaScript
22 lines
491 B
JavaScript
process.chdir(__dirname)
|
|
|
|
module.exports = {
|
|
name: "Plugins",
|
|
testEnvironment: `node`,
|
|
rootDir: "./",
|
|
testPathIgnorePatterns: [
|
|
`/examples/`,
|
|
`/www/`,
|
|
`/dist/`,
|
|
`/node_modules/`,
|
|
`__tests__/fixtures`,
|
|
`__testfixtures__`,
|
|
`.cache`,
|
|
],
|
|
transformIgnorePatterns: [`/dist`],
|
|
transform: { "^.+\\.[jt]s$": `../../jest-transformer.js` },
|
|
setupFilesAfterEnv: ["../setup.js"],
|
|
globalSetup: "../globalSetup.js",
|
|
globalTeardown: "../globalTeardown.js",
|
|
}
|