Files
amazon-city-of-gold/jest.config.js
Andrey Sharshov 9487728656 initial
2025-11-16 18:54:31 +01:00

7 lines
145 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
module.exports = {
testMatch: [
'**/*.test.js', // Найти все тесты с .test.js
'**/*.spec.js' // Или .spec.js
],
};