Skip to content

Commit

Permalink
Moved test props into Docker tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Hargne committed Feb 9, 2025
1 parent 14b53ad commit 1dcd7cf
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 23 deletions.
15 changes: 15 additions & 0 deletions e2e/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,23 @@ cat <<EOF > jest.config.json || { echo "❌ Failed to create jest.config.json";
"reporters": [
"default",
["<rootDir>/jest-html-reporter", {
"append": false,
"boilerplate": null,
"collapseSuitesByDefault": true,
"customScriptPath": null,
"dateFormat": "yyyy-mm-dd (HH:MM:ss)",
"executionTimeWarningThreshold": 1,
"includeConsoleLog": true,
"includeFailureMsg": true,
"includeStackTrace": true,
"includeSuiteFailure": true,
"logo": "https://placehold.co/100x50/png?text=Test+Report&font=playfair-display",
"outputPath": "<rootDir>/${FILENAME}.html",
"pageTitle": "${PAGE_TITLE}",
"sort": "status",
"statusIgnoreFilter": null,
"styleOverridePath": "./style/defaultTheme.css",
"useCssFile": true
}]
]
}
Expand Down
24 changes: 1 addition & 23 deletions jest.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,5 @@
}
},
"testEnvironment": "jsdom",
"verbose": true,
"reporters": [
"default",
["<rootDir>/dist", {
"append": false,
"boilerplate": null,
"collapseSuitesByDefault": true,
"customScriptPath": null,
"dateFormat": "yyyy-mm-dd (HH:MM:ss)",
"executionTimeWarningThreshold": 1,
"includeConsoleLog": true,
"includeFailureMsg": true,
"includeStackTrace": true,
"includeSuiteFailure": true,
"logo": "https://placehold.co/100x50/png?text=Test+Report&font=playfair-display",
"outputPath": "./report.html",
"pageTitle": "Jest HTML Reporter",
"sort": "status",
"statusIgnoreFilter": null,
"styleOverridePath": "./style/defaultTheme.css",
"useCssFile": true
}]
]
"verbose": true
}

0 comments on commit 1dcd7cf

Please sign in to comment.