summaryrefslogtreecommitdiff
path: root/playground/jest.config.cjs
diff options
context:
space:
mode:
Diffstat (limited to 'playground/jest.config.cjs')
-rw-r--r--playground/jest.config.cjs6
1 files changed, 6 insertions, 0 deletions
diff --git a/playground/jest.config.cjs b/playground/jest.config.cjs
new file mode 100644
index 0000000..168ad5c
--- /dev/null
+++ b/playground/jest.config.cjs
@@ -0,0 +1,6 @@
+module.exports = {
+ testEnvironment: 'node',
+ testMatch: ['<rootDir>/tests/integration/**/*.test.js'],
+ testTimeout: 120000,
+ verbose: true,
+};