9 lines
153 B
JavaScript
9 lines
153 B
JavaScript
/** @type {import('jest').Config} */
|
|
const config = {
|
|
preset: "jest-puppeteer",
|
|
testMatch: [
|
|
"**/tests/**/*.js",
|
|
],
|
|
};
|
|
|
|
export default config;
|