Issue #442 Prettier rules not applied to some integration tests files (#445)

This commit is contained in:
Mark
2021-10-08 12:11:58 +02:00
committed by GitHub
parent fe0696569c
commit 3d891c9b4f
17 changed files with 425 additions and 421 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
const glob = require(`glob`);
const glob = require(`glob`)
const pkgs = glob
.sync(`${__dirname}/*/`)
.map((p) => p.replace(__dirname, `<rootDir>/integration-tests`));
.map((p) => p.replace(__dirname, `<rootDir>/integration-tests`))
module.exports = {
testEnvironment: `node`,
@@ -19,4 +19,4 @@ module.exports = {
],
transform: { "^.+\\.[jt]s$": `<rootDir>/jest-transformer.js` },
setupFilesAfterEnv: ["<rootDir>/integration-tests/setup.js"],
};
}