feat: Add http integration tests and enable them in pipeline (#7532)

This commit is contained in:
Stevche Radevski
2024-05-30 10:51:31 +02:00
committed by GitHub
parent 5ad6864b82
commit 6698f3ab7b
13 changed files with 774 additions and 1111 deletions
+12
View File
@@ -0,0 +1,12 @@
process.chdir(__dirname)
module.exports = {
name: "HTTP Integration Tests",
testEnvironment: `node`,
rootDir: "./",
transformIgnorePatterns: ["/dist", "/node_modules/"],
transform: {
"^.+\\.[jt]s$": ["@swc/jest"],
},
setupFiles: ["../setup-env.js"],
}