test-reporter/reports/jest/package.json
2020-11-12 23:32:51 +01:00

25 lines
695 B
JSON
Raw Permalink 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.

{
"name": "jest-fixture",
"version": "0.0.0",
"private": true,
"description": "Generates test fixtures for test-check action",
"scripts": {
"test": "jest --ci --reporters=default --reporters=jest-junit"
},
"author": "Michal Dorner <dorner.michal@gmail.com>",
"license": "MIT",
"devDependencies": {
"jest": "^26.5.3",
"jest-junit": "^12.0.0"
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "../../__tests__/fixtures",
"outputName": "jest-junit.xml",
"ancestorSeparator": " ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}