7 lines
128 B
JavaScript
7 lines
128 B
JavaScript
|
// jest.config.js
|
||
|
module.exports = {
|
||
|
//verbose: true,
|
||
|
testMatch: ["**/__tests__/*.js"],
|
||
|
testEnvironment: "jsdom"
|
||
|
};
|