fix: make plugin tests run with integration test suites (#1101)

* 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
This commit is contained in:
Zakaria El Asri
2022-02-25 16:39:28 +01:00
committed by olivermrbl
parent 4d1c8e1ec5
commit 2cfe56ad0d
6 changed files with 83 additions and 10 deletions

View File

@@ -1,7 +1,9 @@
// API
module.exports = {
name: "api",
testEnvironment: `node`,
rootDir: "./",
testPathIgnorePatterns: [
`/examples/`,
`/www/`,
@@ -11,6 +13,7 @@ module.exports = {
`__testfixtures__`,
`.cache`,
],
transformIgnorePatterns: [`/dist`],
transform: { "^.+\\.[jt]s$": `../../jest-transformer.js` },
setupFilesAfterEnv: ["../setup.js"],
globalSetup: "../globalSetup.js",