mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 14:27:10 +01:00
21 lines
550 B
JSON
21 lines
550 B
JSON
{
|
|
"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",
|
|
"uniqueOutputName": "false"
|
|
}
|
|
}
|